记得上下班打卡 | 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
af849874
Commit
af849874
authored
Apr 13, 2022
by
GaoHu
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev_nft_411' into dev_nft_411
parents
1ce41d03
1839b993
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
GoblinStoreMgtDigitalGoodsAddSkuParam.java
...lin/dto/manage/GoblinStoreMgtDigitalGoodsAddSkuParam.java
+3
-3
GoblinGoodsSkuInfoVo.java
...liquidnet/service/goblin/dto/vo/GoblinGoodsSkuInfoVo.java
+1
-1
db_0315_jxl_nft.sql
...in/liquidnet-service-goblin-impl/docu/db_0315_jxl_nft.sql
+1
-1
No files found.
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/dto/manage/GoblinStoreMgtDigitalGoodsAddSkuParam.java
View file @
af849874
...
@@ -62,9 +62,9 @@ public class GoblinStoreMgtDigitalGoodsAddSkuParam implements Serializable {
...
@@ -62,9 +62,9 @@ public class GoblinStoreMgtDigitalGoodsAddSkuParam implements Serializable {
// @NotNull(message = "线上库存不能为空")
// @NotNull(message = "线上库存不能为空")
@Min
(
value
=
0
,
message
=
"线上库存必须大于0"
)
@Min
(
value
=
0
,
message
=
"线上库存必须大于0"
)
private
Integer
stock
;
private
Integer
stock
;
@ApiModelProperty
(
position
=
22
,
required
=
false
,
value
=
"
概率[0.01~100%]
,`unbox=1`时有效"
,
example
=
"0"
)
@ApiModelProperty
(
position
=
22
,
required
=
false
,
value
=
"
盲盒命中率[0.00~100%],0标识不参与盲盒,null标识均摊
,`unbox=1`时有效"
,
example
=
"0"
)
@DecimalMin
(
value
=
"0"
,
message
=
"概率超出可填范围0.0
1
~100"
)
@DecimalMin
(
value
=
"0"
,
message
=
"概率超出可填范围0.0
0
~100"
)
@DecimalMax
(
value
=
"100"
,
message
=
"概率超出可填范围0.0
1
~100"
)
@DecimalMax
(
value
=
"100"
,
message
=
"概率超出可填范围0.0
0
~100"
)
private
BigDecimal
hitRatio
;
private
BigDecimal
hitRatio
;
@ApiModelProperty
(
position
=
23
,
required
=
true
,
value
=
"藏品价格[20,2]"
,
example
=
"0.01"
)
@ApiModelProperty
(
position
=
23
,
required
=
true
,
value
=
"藏品价格[20,2]"
,
example
=
"0.01"
)
@NotNull
(
message
=
"藏品价格不能为空"
)
@NotNull
(
message
=
"藏品价格不能为空"
)
...
...
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/dto/vo/GoblinGoodsSkuInfoVo.java
View file @
af849874
...
@@ -47,7 +47,7 @@ public class GoblinGoodsSkuInfoVo implements Serializable, Cloneable {
...
@@ -47,7 +47,7 @@ public class GoblinGoodsSkuInfoVo implements Serializable, Cloneable {
private
Integer
stock
;
private
Integer
stock
;
@ApiModelProperty
(
position
=
18
,
value
=
"单品库存"
)
@ApiModelProperty
(
position
=
18
,
value
=
"单品库存"
)
private
Integer
skuStock
;
private
Integer
skuStock
;
@ApiModelProperty
(
position
=
18
,
value
=
"盲盒命中率[0.01~100%]"
)
@ApiModelProperty
(
position
=
18
,
value
=
"盲盒命中率[0.01~100%]
0标识不参与盲盒,null标识均摊
"
)
private
BigDecimal
hitRatio
;
private
BigDecimal
hitRatio
;
@ApiModelProperty
(
position
=
19
,
value
=
"预警库存"
)
@ApiModelProperty
(
position
=
19
,
value
=
"预警库存"
)
private
Integer
warningStock
;
private
Integer
warningStock
;
...
...
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/docu/db_0315_jxl_nft.sql
View file @
af849874
...
@@ -28,7 +28,7 @@ alter table goblin_goods_sku add sale_stop_time datetime null comment '停售时
...
@@ -28,7 +28,7 @@ alter table goblin_goods_sku add sale_stop_time datetime null comment '停售时
alter
table
goblin_goods_sku
add
soldout_status
char
default
'0'
not
null
comment
'是否售罄[0-否|1-是]'
after
shelves_status
;
alter
table
goblin_goods_sku
add
soldout_status
char
default
'0'
not
null
comment
'是否售罄[0-否|1-是]'
after
shelves_status
;
alter
table
goblin_goods_sku
add
sku_canbuy
char
null
comment
'是否购买[0-否|1-是]'
after
sku_appear
;
alter
table
goblin_goods_sku
add
sku_canbuy
char
null
comment
'是否购买[0-否|1-是]'
after
sku_appear
;
alter
table
goblin_goods_sku
add
unbox
char
default
'0'
not
null
null
comment
'是否盲盒[0-否|1-是]'
after
sku_canbuy
;
alter
table
goblin_goods_sku
add
unbox
char
default
'0'
not
null
null
comment
'是否盲盒[0-否|1-是]'
after
sku_canbuy
;
alter
table
goblin_goods_sku
add
hit_ratio
decimal
(
8
,
2
)
null
comment
'盲盒命中率[0.0
1~100%]
'
after
unbox
;
alter
table
goblin_goods_sku
add
hit_ratio
decimal
(
8
,
2
)
null
comment
'盲盒命中率[0.0
0~100%],0标识不参与盲盒,null标识均摊
'
after
unbox
;
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
;
...
...
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