记得上下班打卡 | 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
398e38ee
Commit
398e38ee
authored
May 19, 2025
by
wangyifan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改返回格式
parent
1cbaad35
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
10 deletions
+21
-10
KylinLuckyBagScopeVo.java
.../liquidnet/service/kylin/dto/vo/KylinLuckyBagScopeVo.java
+20
-8
liquidnet-service-kylin.yml
...t-bus-config/liquidnet-config/liquidnet-service-kylin.yml
+0
-1
KylinLuckyBagServiceImpl.java
.../service/kylin/service/impl/KylinLuckyBagServiceImpl.java
+1
-1
No files found.
liquidnet-bus-api/liquidnet-service-kylin-api/src/main/java/com/liquidnet/service/kylin/dto/vo/KylinLuckyBagScopeVo.java
View file @
398e38ee
...
...
@@ -4,10 +4,21 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
java.util.List
;
@Data
@ApiModel
(
value
=
"福袋Scope VO"
)
public
class
KylinLuckyBagScopeVo
{
@ApiModelProperty
(
value
=
"认证Token"
)
private
String
authToken
;
@ApiModelProperty
(
value
=
"福袋信息列表"
)
private
List
<
KylinLuckyBagInfo
>
kylinLuckyBagInfoList
;
@Data
@ApiModel
(
value
=
"福袋信息"
)
public
static
class
KylinLuckyBagInfo
{
@ApiModelProperty
(
value
=
"福袋ID"
)
private
String
luckyBagId
;
...
...
@@ -19,5 +30,6 @@ public class KylinLuckyBagScopeVo {
@ApiModelProperty
(
value
=
"关联演出名称"
)
private
String
performanceName
;
}
}
liquidnet-bus-config/liquidnet-config/liquidnet-service-kylin.yml
View file @
398e38ee
...
...
@@ -154,7 +154,6 @@ global-auth:
# 场地摄像头列表
-
${liquidnet.info.context}/camera/list
-
${liquidnet.info.context}/inner/**
-
${liquidnet.info.context}/luckyBag/code/consume
oncheck-url-pattern
:
-
${liquidnet.info.context}/order/details
-
${liquidnet.info.context}/order/transfer*
...
...
liquidnet-bus-service/liquidnet-service-kylin/liquidnet-service-kylin-impl/src/main/java/com/liquidnet/service/kylin/service/impl/KylinLuckyBagServiceImpl.java
View file @
398e38ee
...
...
@@ -272,7 +272,7 @@ public class KylinLuckyBagServiceImpl implements IKylinLuckyBagService {
user
.
setCode
(
code
);
user
.
setState
(
1
);
user
.
setCreatedAt
(
LocalDateTime
.
now
());
user
.
setUpdatedAt
(
LocalDateTime
.
now
());
//
user.setUpdatedAt(LocalDateTime.now());
return
user
;
}
...
...
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