记得上下班打卡 | 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
6e283bec
Commit
6e283bec
authored
Jul 01, 2022
by
胡佳晨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
盲盒下单 判断逻辑完成
parent
73369bc4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
6 deletions
+14
-6
GoblinGoodsSkuInfoVo.java
...liquidnet/service/goblin/dto/vo/GoblinGoodsSkuInfoVo.java
+14
-6
No files found.
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/dto/vo/GoblinGoodsSkuInfoVo.java
View file @
6e283bec
...
@@ -88,7 +88,7 @@ public class GoblinGoodsSkuInfoVo implements Serializable, Cloneable {
...
@@ -88,7 +88,7 @@ public class GoblinGoodsSkuInfoVo implements Serializable, Cloneable {
@ApiModelProperty
(
position
=
27
,
value
=
"停售时间"
)
@ApiModelProperty
(
position
=
27
,
value
=
"停售时间"
)
private
LocalDateTime
saleStopTime
;
private
LocalDateTime
saleStopTime
;
@ApiModelProperty
(
position
=
28
,
value
=
"单品有效期"
)
@ApiModelProperty
(
position
=
28
,
value
=
"单品有效期"
)
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
DateUtil
.
DATE_FULL_STR
)
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
DateUtil
.
DATE_FULL_STR
)
private
LocalDateTime
skuValidity
;
private
LocalDateTime
skuValidity
;
@ApiModelProperty
(
position
=
29
,
value
=
"是否是虚拟商品[0-否|1-是]"
)
@ApiModelProperty
(
position
=
29
,
value
=
"是否是虚拟商品[0-否|1-是]"
)
private
String
virtualFlg
;
private
String
virtualFlg
;
...
@@ -107,7 +107,7 @@ public class GoblinGoodsSkuInfoVo implements Serializable, Cloneable {
...
@@ -107,7 +107,7 @@ public class GoblinGoodsSkuInfoVo implements Serializable, Cloneable {
@ApiModelProperty
(
position
=
33
,
value
=
"是否盲盒[0-否|1-是]"
)
@ApiModelProperty
(
position
=
33
,
value
=
"是否盲盒[0-否|1-是]"
)
private
String
unbox
;
private
String
unbox
;
@ApiModelProperty
(
position
=
33
,
value
=
"盲盒开启时间"
)
@ApiModelProperty
(
position
=
33
,
value
=
"盲盒开启时间"
)
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
DateUtil
.
DATE_FULL_STR
)
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
DateUtil
.
DATE_FULL_STR
)
private
LocalDateTime
openingTime
;
private
LocalDateTime
openingTime
;
@ApiModelProperty
(
position
=
33
,
value
=
"盲盒开启时限[单位秒]"
)
@ApiModelProperty
(
position
=
33
,
value
=
"盲盒开启时限[单位秒]"
)
private
Integer
openingLimit
;
private
Integer
openingLimit
;
...
@@ -130,7 +130,7 @@ public class GoblinGoodsSkuInfoVo implements Serializable, Cloneable {
...
@@ -130,7 +130,7 @@ public class GoblinGoodsSkuInfoVo implements Serializable, Cloneable {
@ApiModelProperty
(
position
=
34
,
value
=
"删除标记[0-未删除|1-删除]"
)
@ApiModelProperty
(
position
=
34
,
value
=
"删除标记[0-未删除|1-删除]"
)
private
String
delFlg
;
private
String
delFlg
;
@ApiModelProperty
(
position
=
35
,
value
=
"上架时间"
)
@ApiModelProperty
(
position
=
35
,
value
=
"上架时间"
)
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
DateUtil
.
DATE_FULL_STR
)
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
DateUtil
.
DATE_FULL_STR
)
private
LocalDateTime
shelvesAt
;
private
LocalDateTime
shelvesAt
;
@ApiModelProperty
(
position
=
36
,
value
=
"活动Id"
)
@ApiModelProperty
(
position
=
36
,
value
=
"活动Id"
)
private
String
marketId
;
private
String
marketId
;
...
@@ -138,13 +138,13 @@ public class GoblinGoodsSkuInfoVo implements Serializable, Cloneable {
...
@@ -138,13 +138,13 @@ public class GoblinGoodsSkuInfoVo implements Serializable, Cloneable {
private
String
logisticsTemplate
;
private
String
logisticsTemplate
;
private
String
createdBy
;
private
String
createdBy
;
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
DateUtil
.
DATE_FULL_STR
)
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
DateUtil
.
DATE_FULL_STR
)
private
LocalDateTime
createdAt
;
private
LocalDateTime
createdAt
;
private
String
updatedBy
;
private
String
updatedBy
;
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
DateUtil
.
DATE_FULL_STR
)
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
DateUtil
.
DATE_FULL_STR
)
private
LocalDateTime
updatedAt
;
private
LocalDateTime
updatedAt
;
private
String
deletedBy
;
private
String
deletedBy
;
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
DateUtil
.
DATE_FULL_STR
)
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
DateUtil
.
DATE_FULL_STR
)
private
LocalDateTime
deletedAt
;
private
LocalDateTime
deletedAt
;
@ApiModelProperty
(
position
=
40
,
value
=
"单品AR文件URL-iOS版"
)
@ApiModelProperty
(
position
=
40
,
value
=
"单品AR文件URL-iOS版"
)
...
@@ -164,6 +164,14 @@ public class GoblinGoodsSkuInfoVo implements Serializable, Cloneable {
...
@@ -164,6 +164,14 @@ public class GoblinGoodsSkuInfoVo implements Serializable, Cloneable {
private
static
final
GoblinGoodsSkuInfoVo
obj
=
new
GoblinGoodsSkuInfoVo
();
private
static
final
GoblinGoodsSkuInfoVo
obj
=
new
GoblinGoodsSkuInfoVo
();
public
String
getUnbox
()
{
if
(
skuType
==
0
)
{
return
unbox
==
null
?
"0"
:
unbox
;
}
else
{
return
unbox
;
}
}
public
static
GoblinGoodsSkuInfoVo
getNew
()
{
public
static
GoblinGoodsSkuInfoVo
getNew
()
{
try
{
try
{
return
(
GoblinGoodsSkuInfoVo
)
obj
.
clone
();
return
(
GoblinGoodsSkuInfoVo
)
obj
.
clone
();
...
...
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