Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
SiEn
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hewei
SiEn
Commits
5924ca95
Commit
5924ca95
authored
Oct 27, 2020
by
lanpingxiong
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev/lanpingxiong' into 'master'
# 财务管理-收款记录接口 See merge request hewei/Jumeirah!45
parents
3c3539c3
a8f4ba1b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
12 deletions
+10
-12
common/src/main/java/com/jumeirah/common/service/impl/StrokeServiceImpl.java
+1
-1
common/src/main/resources/mapper/StrokeMapper.xml
+9
-11
No files found.
common/src/main/java/com/jumeirah/common/service/impl/StrokeServiceImpl.java
View file @
5924ca95
...
@@ -110,7 +110,7 @@ public class StrokeServiceImpl extends BaseServiceImpl<StrokeMapper, Stroke> imp
...
@@ -110,7 +110,7 @@ public class StrokeServiceImpl extends BaseServiceImpl<StrokeMapper, Stroke> imp
@Override
@Override
public
Paging
<
McStrokePaymentQueryVo
>
getPaymentPageList
(
McStrokePaymentPageParam
mcStrokePaymentPageParam
)
{
public
Paging
<
McStrokePaymentQueryVo
>
getPaymentPageList
(
McStrokePaymentPageParam
mcStrokePaymentPageParam
)
{
Page
<
StrokeQueryVo
>
page
=
new
PageInfo
<>(
mcStrokePaymentPageParam
,
OrderItem
.
asc
(
getLambdaColumn
(
Stroke:
:
getCreateTime
))
);
Page
<
StrokeQueryVo
>
page
=
new
PageInfo
<>(
mcStrokePaymentPageParam
);
IPage
<
McStrokePaymentQueryVo
>
mcStrokePageList
=
strokeMapper
.
getPaymentPageList
(
page
,
mcStrokePaymentPageParam
);
IPage
<
McStrokePaymentQueryVo
>
mcStrokePageList
=
strokeMapper
.
getPaymentPageList
(
page
,
mcStrokePaymentPageParam
);
return
new
Paging
<
McStrokePaymentQueryVo
>(
mcStrokePageList
);
return
new
Paging
<
McStrokePaymentQueryVo
>(
mcStrokePageList
);
}
}
...
...
common/src/main/resources/mapper/StrokeMapper.xml
View file @
5924ca95
...
@@ -155,23 +155,21 @@
...
@@ -155,23 +155,21 @@
<select
id=
"getPaymentPageList"
parameterType=
"com.jumeirah.common.param.McStrokePaymentPageParam"
<select
id=
"getPaymentPageList"
parameterType=
"com.jumeirah.common.param.McStrokePaymentPageParam"
resultType=
"com.jumeirah.common.vo.McStrokePaymentQueryVo"
>
resultType=
"com.jumeirah.common.vo.McStrokePaymentQueryVo"
>
SELECT
SELECT
s.id,
s.id,
s.type,
s.type,
s.user_recharge_time,
s.user_recharge_time,
s.payment_status,
s.payment_status,
s.user_recharge_money,
s.user_recharge_money,
s.payment_channel,
s.payment_channel,
CONCAT( au.surname, au.`name` ) AS applicant,
CONCAT( au.surname, au.`name` ) AS applicant,
au.phone AS phone_number
au.phone AS phone_number
FROM
FROM
stroke s
stroke s
LEFT JOIN app_user au ON au.id = s.user_id
LEFT JOIN app_user au ON au.id = s.user_id
<where>
<where>
<if
test=
"param.paymentStatus != null and param.paymentStatus != -1"
>
<if
test=
"param.paymentStatus != null and param.paymentStatus != -1"
>
AND s.status = #{param.paymentStatus}
AND s.status = #{param.paymentStatus}
</if>
</if>
<if
test=
"param.id != null and param.id != 0"
>
<if
test=
"param.id != null and param.id != 0"
>
AND s.id = #{param.id}
AND s.id = #{param.id}
</if>
</if>
...
...
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