记得上下班打卡 | 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
0534be66
Commit
0534be66
authored
Nov 15, 2022
by
胡佳晨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交代理 演出姓名排序,搜索
parent
5d3c49f8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
5 deletions
+9
-5
SmileShowServiceImpl.java
...min/zhengzai/smile/service/impl/SmileShowServiceImpl.java
+1
-1
KylinPerformancesMapper.java
...quidnet/service/kylin/mapper/KylinPerformancesMapper.java
+1
-1
KylinPerformancesMapper.xml
...iquidnet.service.kylin.mapper/KylinPerformancesMapper.xml
+7
-3
No files found.
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-zhengzai/src/main/java/com/liquidnet/client/admin/zhengzai/smile/service/impl/SmileShowServiceImpl.java
View file @
0534be66
...
...
@@ -101,7 +101,7 @@ public class SmileShowServiceImpl extends ServiceImpl<SmileSchoolMapper, SmileSc
PageHelper
.
startPage
(
smileShowParam
.
getPageNum
(),
smileShowParam
.
getPageSize
());
TableDataInfo
rspData
=
new
TableDataInfo
();
//查询所有代理的演出id
List
<
KylinPerformancesDto
>
kylinPerformancesList
=
kylinPerformancesMapper
.
selectPerIdByAgent
();
List
<
KylinPerformancesDto
>
kylinPerformancesList
=
kylinPerformancesMapper
.
selectPerIdByAgent
(
smileShowParam
.
getName
()
);
List
<
ShowVo
>
showVoList
=
kylinPerformancesList
.
stream
().
map
(
kylinPerformancesDto
->
{
ShowVo
vo
=
ShowVo
.
getNew
().
copy
(
kylinPerformancesDto
);
Integer
ordNum
=
kylinOrderTicketRelationsMapper
.
concatByAgentDed
(
kylinPerformancesDto
.
getPerformancesId
());
...
...
liquidnet-bus-do/liquidnet-service-kylin-do/src/main/java/com/liquidnet/service/kylin/mapper/KylinPerformancesMapper.java
View file @
0534be66
...
...
@@ -68,7 +68,7 @@ public interface KylinPerformancesMapper extends BaseMapper<KylinPerformances> {
List
<
KylinPerformances
>
selectByComment
();
List
<
KylinPerformancesDto
>
selectPerIdByAgent
();
List
<
KylinPerformancesDto
>
selectPerIdByAgent
(
@Param
(
"title"
)
String
title
);
List
<
KylinPerformancesDao
>
selectTicketIdByPerId
(
@Param
(
"performancesId"
)
String
performancesId
);
...
...
liquidnet-bus-do/liquidnet-service-kylin-do/src/main/resources/com.liquidnet.service.kylin.mapper/KylinPerformancesMapper.xml
View file @
0534be66
...
...
@@ -762,13 +762,17 @@ GROUP BY user_mobile,tickets_id;
GROUP BY
kk.performance_id
) AS map ON map.performance_id = kp.performances_id
WHERE
kp.performances_id IN ( SELECT sa.performance_id FROM smile_agent AS sa WHERE sa.del_tag = 0 GROUP BY sa.performance_id )
<where>
kp.performances_id IN ( SELECT sa.performance_id FROM smile_agent AS sa WHERE sa.del_tag = 0 GROUP BY sa.performance_id )
<if
test=
"title!=''"
>
AND kp.title LIKE concat('%', #{title}, '%')
</if>
</where>
GROUP BY
sa.performance_id
ORDER BY
kp.COMMENT DESC,
kp.ti
me_start
DESC
kp.ti
tle
DESC
</select>
<select
id=
"getListAll"
resultType=
"com.liquidnet.service.kylin.dao.report.KylinPerformancesDto"
>
...
...
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