记得上下班打卡 | 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
0d9da77e
Commit
0d9da77e
authored
Jan 28, 2026
by
wangyifan
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '250115-realNameAndinformation-optimization' into container-test
parents
16a01bbe
9e0fcf85
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
10 deletions
+6
-10
PerformancePartnerVo.java
...quidnet/service/kylin/dto/param/PerformancePartnerVo.java
+0
-2
PerformanceStep1Param.java
...uidnet/service/kylin/dto/param/PerformanceStep1Param.java
+0
-3
PerformanceStep2Param.java
...uidnet/service/kylin/dto/param/PerformanceStep2Param.java
+4
-0
KylinPerformancesPartnerServiceImpl.java
...ime/service/impl/KylinPerformancesPartnerServiceImpl.java
+2
-5
No files found.
liquidnet-bus-api/liquidnet-service-kylin-api/src/main/java/com/liquidnet/service/kylin/dto/param/PerformancePartnerVo.java
View file @
0d9da77e
...
...
@@ -124,8 +124,6 @@ public class PerformancePartnerVo implements Serializable, Cloneable {
@ApiModelProperty
(
value
=
"是否保存"
,
example
=
""
)
private
Integer
isCreateSave
;
@ApiModelProperty
(
value
=
"须知提醒 0:不提醒 1:提醒"
)
private
Integer
noticeRemindStatus
;
public
Integer
getIdCount
()
{
return
idCount
==
null
?
limitCount:
idCount
;
...
...
liquidnet-bus-api/liquidnet-service-kylin-api/src/main/java/com/liquidnet/service/kylin/dto/param/PerformanceStep1Param.java
View file @
0d9da77e
...
...
@@ -90,7 +90,4 @@ public class PerformanceStep1Param implements Serializable {
@JsonIgnore
private
String
createdAt
;
@ApiModelProperty
(
value
=
"须知提醒 0:不提醒 1:提醒"
)
@NotNull
(
message
=
"须知提醒不能为空"
)
private
Integer
noticeRemindStatus
;
}
liquidnet-bus-api/liquidnet-service-kylin-api/src/main/java/com/liquidnet/service/kylin/dto/param/PerformanceStep2Param.java
View file @
0d9da77e
...
...
@@ -50,6 +50,10 @@ public class PerformanceStep2Param implements Serializable,Cloneable {
@ApiModelProperty
(
value
=
"场次数据"
,
hidden
=
true
)
private
List
<
TicketTimesTicketCreatePartnerVo
>
ticketTimes
;
@ApiModelProperty
(
value
=
"须知提醒 0:不提醒 1:提醒"
)
@NotNull
(
message
=
"须知提醒不能为空"
)
private
Integer
noticeRemindStatus
;
private
static
final
PerformanceStep2Param
obj
=
new
PerformanceStep2Param
();
public
static
PerformanceStep2Param
getNew
()
{
try
{
...
...
liquidnet-bus-service/liquidnet-service-slime/liquidnet-service-slime-impl/src/main/java/com/liquidnet/service/slime/service/impl/KylinPerformancesPartnerServiceImpl.java
View file @
0d9da77e
...
...
@@ -123,8 +123,6 @@ public class KylinPerformancesPartnerServiceImpl implements IKylinPerformancesPa
performancePartnerVo
.
setFieldName
(
redisSlimeUtils
.
getFieldVo
(
step1Param
.
getFieldId
()).
getName
());
performancePartnerVo
.
setNoticeImage
(
innerUtils
.
getBuyNoticeJsonString
(
step1Param
.
getNoticeIds
()));
mongoSlimeUtils
.
insertPerformancePartnerVo
(
performancePartnerVo
);
// 设置须知提醒状态
redisSlimeUtils
.
setPerformanceNoticeRemindStatus
(
performanceId
,
step1Param
.
getNoticeRemindStatus
());
return
performanceId
;
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
...
...
@@ -179,8 +177,6 @@ public class KylinPerformancesPartnerServiceImpl implements IKylinPerformancesPa
performancePartnerVo
.
setProjectId
(
vo
.
getProjectId
());
mongoSlimeUtils
.
insertPerformancePartnerVo
(
performancePartnerVo
);
}
// 修改须知提醒状态
redisSlimeUtils
.
setPerformanceNoticeRemindStatus
(
performanceId
,
step1Param
.
getNoticeRemindStatus
());
return
performanceId
;
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
...
...
@@ -208,7 +204,6 @@ public class KylinPerformancesPartnerServiceImpl implements IKylinPerformancesPa
if
(
null
!=
vo
)
{
data
.
setStatus
(
vo
.
getAppStatus
());
}
data
.
setNoticeRemindStatus
(
redisSlimeUtils
.
getPerformanceNoticeRemindStatus
(
performancesId
));
log
.
info
(
UserPathDto
.
setPartnerData
(
"0"
,
"getStep1"
,
"merchant="
+
merchantId
+
"&performancesId="
+
performancesId
,
data
));
return
ResponseDto
.
success
(
data
);
}
...
...
@@ -220,6 +215,7 @@ public class KylinPerformancesPartnerServiceImpl implements IKylinPerformancesPa
// 无 performancesId 则 创建
if
(!
step2Param
.
getPerformancesId
().
isEmpty
())
{
// 获取 create 数据 status = 0 或 无数据 创建
redisSlimeUtils
.
setPerformanceInvoiceReminder
(
step2Param
.
getPerformancesId
(),
step2Param
.
getIsInvoiceReminder
());
redisSlimeUtils
.
setPerformanceNoticeRemindStatus
(
step2Param
.
getPerformancesId
(),
step2Param
.
getNoticeRemindStatus
());
KylinPerformanceVo
vo
=
redisSlimeUtils
.
getPerformanceVo
(
step2Param
.
getPerformancesId
());
if
(
vo
==
null
||
vo
.
getAppStatus
()
==
0
||
vo
.
getAppStatus
()
==
1
||
(
vo
.
getAppStatus
()
==
4
&&
vo
.
getAuditStatus
()
==
2
))
{
result
=
createStep2
(
step2Param
);
...
...
@@ -558,6 +554,7 @@ public class KylinPerformancesPartnerServiceImpl implements IKylinPerformancesPa
performanceStep2Param
.
setTicketTimes
(
ticketTimesTicketCreatePartnerVoList
);
performanceStep2Param
.
setIsInvoiceReminder
(
redisSlimeUtils
.
getPerformanceInvoiceReminder
(
performancesId
));
performanceStep2Param
.
setNoticeRemindStatus
(
redisSlimeUtils
.
getPerformanceNoticeRemindStatus
(
performancesId
));
log
.
info
(
UserPathDto
.
setPartnerData
(
"0"
,
"getStep2"
,
"performancesId="
+
performancesId
,
performanceStep2Param
));
return
ResponseDto
.
success
(
performanceStep2Param
);
}
...
...
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