记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
董敬伟
liquidnet-bus-v1
Commits
c0a15062
Commit
c0a15062
authored
Mar 23, 2022
by
张国柄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
~goblin:nft.sql;
~goblin:nft.entity;
parent
111fe895
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
GoblinGoodsSku.java
...a/com/liquidnet/service/goblin/entity/GoblinGoodsSku.java
+5
-0
db_0315_jxl_nft.sql
...in/liquidnet-service-goblin-impl/docu/db_0315_jxl_nft.sql
+2
-1
No files found.
liquidnet-bus-do/liquidnet-service-goblin-do/src/main/java/com/liquidnet/service/goblin/entity/GoblinGoodsSku.java
View file @
c0a15062
...
@@ -212,6 +212,11 @@ public class GoblinGoodsSku implements Serializable {
...
@@ -212,6 +212,11 @@ public class GoblinGoodsSku implements Serializable {
*/
*/
private
String
routeType
;
private
String
routeType
;
/**
* NFT上传声明状态[0-待上传|1-已上传|2-上传失败|9-上传中]
*/
private
Integer
upchain
;
/**
/**
* NFT预览图URL
* NFT预览图URL
*/
*/
...
...
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/docu/db_0315_jxl_nft.sql
View file @
c0a15062
...
@@ -27,7 +27,8 @@ alter table goblin_goods_sku add hit_ratio varchar(10) null comment '盲盒命
...
@@ -27,7 +27,8 @@ alter table goblin_goods_sku add hit_ratio varchar(10) null comment '盲盒命
alter
table
goblin_goods_sku
add
opening_time
datetime
null
comment
'盲盒开启时间'
after
hit_ratio
;
alter
table
goblin_goods_sku
add
opening_time
datetime
null
comment
'盲盒开启时间'
after
hit_ratio
;
alter
table
goblin_goods_sku
add
opening_limit
int
default
0
comment
'盲盒开启时限[单位秒]'
after
opening_time
;
alter
table
goblin_goods_sku
add
opening_limit
int
default
0
comment
'盲盒开启时限[单位秒]'
after
opening_time
;
alter
table
goblin_goods_sku
add
route_type
varchar
(
20
)
null
comment
'NFT路由'
after
opening_limit
;
alter
table
goblin_goods_sku
add
route_type
varchar
(
20
)
null
comment
'NFT路由'
after
opening_limit
;
alter
table
goblin_goods_sku
add
display_url
varchar
(
256
)
null
comment
'NFT预览图URL'
after
route_type
;
alter
table
goblin_goods_sku
add
upchain
tinyint
default
0
null
comment
'NFT上传声明状态[0-待上传|1-已上传|2-上传失败|9-上传中]'
after
route_type
;
alter
table
goblin_goods_sku
add
display_url
varchar
(
256
)
null
comment
'NFT预览图URL'
after
upchain
;
alter
table
goblin_goods_sku
add
material_access_url
varchar
(
256
)
null
comment
'NFT素材访问URL'
after
display_url
;
alter
table
goblin_goods_sku
add
material_access_url
varchar
(
256
)
null
comment
'NFT素材访问URL'
after
display_url
;
alter
table
goblin_goods_sku
add
series_id
varchar
(
256
)
null
comment
'NFT系列ID'
after
material_access_url
;
alter
table
goblin_goods_sku
add
series_id
varchar
(
256
)
null
comment
'NFT系列ID'
after
material_access_url
;
#
-- >>------------------------------------------------------------------------------------
#
-- >>------------------------------------------------------------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment