记得上下班打卡 | 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
2157b10e
Commit
2157b10e
authored
Apr 13, 2022
by
胡佳晨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改 获取预约信息接口 增加 预约认输和预约规则
parent
359694ff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
GoblinNftGoodsSkuInfoVo.java
...uidnet/service/goblin/dto/vo/GoblinNftGoodsSkuInfoVo.java
+8
-3
GoblinGoodsAnticipateServiceImpl.java
...goblin/service/impl/GoblinGoodsAnticipateServiceImpl.java
+2
-0
No files found.
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/dto/vo/GoblinNftGoodsSkuInfoVo.java
View file @
2157b10e
...
@@ -10,6 +10,7 @@ import lombok.Data;
...
@@ -10,6 +10,7 @@ import lombok.Data;
import
java.io.Serializable
;
import
java.io.Serializable
;
import
java.math.BigDecimal
;
import
java.math.BigDecimal
;
import
java.math.BigInteger
;
import
java.time.LocalDateTime
;
import
java.time.LocalDateTime
;
import
java.util.List
;
import
java.util.List
;
...
@@ -74,6 +75,10 @@ public class GoblinNftGoodsSkuInfoVo implements Serializable, Cloneable {
...
@@ -74,6 +75,10 @@ public class GoblinNftGoodsSkuInfoVo implements Serializable, Cloneable {
private
String
aboutEndDate
;
private
String
aboutEndDate
;
@ApiModelProperty
(
position
=
61
,
value
=
"预约状态(0:未开始,1:可预约,3:已结束)"
)
@ApiModelProperty
(
position
=
61
,
value
=
"预约状态(0:未开始,1:可预约,3:已结束)"
)
private
Integer
state
;
private
Integer
state
;
@ApiModelProperty
(
position
=
62
,
value
=
"预约规则"
)
private
String
rule
;
@ApiModelProperty
(
position
=
63
,
value
=
"预约认输"
)
private
BigInteger
aboutPeople
;
private
static
final
GoblinNftGoodsSkuInfoVo
obj
=
new
GoblinNftGoodsSkuInfoVo
();
private
static
final
GoblinNftGoodsSkuInfoVo
obj
=
new
GoblinNftGoodsSkuInfoVo
();
...
@@ -108,9 +113,9 @@ public class GoblinNftGoodsSkuInfoVo implements Serializable, Cloneable {
...
@@ -108,9 +113,9 @@ public class GoblinNftGoodsSkuInfoVo implements Serializable, Cloneable {
if
(
anticipateValueVo
.
getAboutEndDate
()
!=
null
)
{
if
(
anticipateValueVo
.
getAboutEndDate
()
!=
null
)
{
this
.
setAboutStartDate
(
DateUtil
.
Formatter
.
yyyyMMddHHmmss
.
format
(
anticipateValueVo
.
getAboutStartDate
()));
this
.
setAboutStartDate
(
DateUtil
.
Formatter
.
yyyyMMddHHmmss
.
format
(
anticipateValueVo
.
getAboutStartDate
()));
}
}
if
(
anticipateValueVo
.
getState
()
!=
null
)
{
this
.
setState
(
anticipateValueVo
.
getState
());
this
.
setState
(
anticipateValueVo
.
getStat
e
());
this
.
setRule
(
anticipateValueVo
.
getRul
e
());
}
this
.
setAboutPeople
(
anticipateValueVo
.
getAboutPeople
());
}
}
return
this
;
return
this
;
}
}
...
...
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/src/main/java/com/liquidnet/service/goblin/service/impl/GoblinGoodsAnticipateServiceImpl.java
View file @
2157b10e
...
@@ -266,6 +266,8 @@ public class GoblinGoodsAnticipateServiceImpl implements IGoblinGoodsAnticipateS
...
@@ -266,6 +266,8 @@ public class GoblinGoodsAnticipateServiceImpl implements IGoblinGoodsAnticipateS
valueVo
.
setState
(
null
);
valueVo
.
setState
(
null
);
valueVo
.
setAboutEndDate
(
null
);
valueVo
.
setAboutEndDate
(
null
);
valueVo
.
setAboutStartDate
(
null
);
valueVo
.
setAboutStartDate
(
null
);
valueVo
.
setAboutPeople
(
BigInteger
.
ZERO
);
valueVo
.
setRule
(
""
);
}
}
return
ResponseDto
.
success
(
valueVo
);
return
ResponseDto
.
success
(
valueVo
);
}
}
...
...
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