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
a8f4ba1b
Commit
a8f4ba1b
authored
Oct 27, 2020
by
lpx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
# 财务管理-收款记录接口
parent
3c3539c3
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
3 deletions
+1
-3
common/src/main/java/com/jumeirah/common/service/impl/StrokeServiceImpl.java
+1
-1
common/src/main/resources/mapper/StrokeMapper.xml
+0
-2
No files found.
common/src/main/java/com/jumeirah/common/service/impl/StrokeServiceImpl.java
View file @
a8f4ba1b
...
@@ -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 @
a8f4ba1b
...
@@ -166,12 +166,10 @@
...
@@ -166,12 +166,10 @@
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