Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ufo
/
ufo-platform
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Lixiaodi
5 years ago
Commit
9ca9bd2db6036da2206f701e1ff90f2c9ff33d52
1 parent
3ef1250b
bug修改
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
dal/src/main/resources/META-INF/mybatis/RefundRecordMapper.xml
order/src/main/java/com/yoho/ufo/order/service/impl/RefundRecordServiceImpl.java
dal/src/main/resources/META-INF/mybatis/RefundRecordMapper.xml
View file @
9ca9bd2
...
...
@@ -280,22 +280,22 @@
<sql
id=
"listCondition"
>
del_flag = 0
<if
test=
"startTimeMill != null"
>
create_date
>
= #{startTimeMill}
and
create_date
>
= #{startTimeMill}
</if>
<if
test=
"endTimeMill != null"
>
create_date
<
= #{endTimeMill}
and
create_date
<
= #{endTimeMill}
</if>
<if
test=
"uid != null"
>
uid = #{uid}
and
uid = #{uid}
</if>
<if
test=
"refundStatus != null"
>
refund_status = #{refundStatus}
and
refund_status = #{refundStatus}
</if>
<if
test=
"refundType != null"
>
refund_type = #{refundType}
and
refund_type = #{refundType}
</if>
<if
test=
"sponsorName != null and sponsorName != ''"
>
sponsor_name = #{sponsorName}
and
sponsor_name = #{sponsorName}
</if>
</sql>
</mapper>
\ No newline at end of file
...
...
order/src/main/java/com/yoho/ufo/order/service/impl/RefundRecordServiceImpl.java
View file @
9ca9bd2
...
...
@@ -73,7 +73,7 @@ public class RefundRecordServiceImpl implements IRefundRecordService, IBusinessE
resp
.
setList
(
boList
);
resp
.
setSize
(
req
.
getSize
());
resp
.
setTotal
(
count
);
return
null
;
return
resp
;
}
@Override
...
...
Please
register
or
login
to post a comment