Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
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
youjj
cloud-platform
Commits
71586efc
Commit
71586efc
authored
Sep 14, 2020
by
周健威
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master-vehicle-price' into master-vehicle-price
parents
44682271
2e7d8a72
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
4 deletions
+20
-4
WalletCathDTO.java
.../java/com/xxfc/platform/order/pojo/dto/WalletCathDTO.java
+5
-0
CompanyWaterCathMapper.xml
...rver/src/main/resources/mapper/CompanyWaterCathMapper.xml
+13
-2
CompanyWaterDetailMapper.xml
...er/src/main/resources/mapper/CompanyWaterDetailMapper.xml
+2
-2
No files found.
xx-order/xx-order-api/src/main/java/com/xxfc/platform/order/pojo/dto/WalletCathDTO.java
View file @
71586efc
...
...
@@ -35,6 +35,11 @@ public class WalletCathDTO extends PageParam implements DataInter {
private
Integer
branchId
;
@ApiModelProperty
(
"提现状态:0-未提现;1-已提现"
)
private
Integer
status
;
@ApiModelProperty
(
"开始时间"
)
private
Long
startTime
;
...
...
xx-order/xx-order-server/src/main/resources/mapper/CompanyWaterCathMapper.xml
View file @
71586efc
...
...
@@ -23,11 +23,22 @@
<if
test=
"orderNo != null and orderNo != '' "
>
and wc.order_no like concat('%',#{orderNo},'%')
</if>
<if
test=
"status != null "
>
and
<choose>
<when
test=
"status == 0"
>
wc.stauts in (0 ,2)
</when>
<otherwise>
wc.stauts =#{status}
</otherwise>
</choose>
</if>
<if
test=
"startTime != null and startTime > 0"
>
and wc.crt_time >
=
{startTime}
and wc.crt_time >
= #
{startTime}
</if>
<if
test=
"endTime != null and endTime > 0"
>
and wc.crt_time
<
= {endTime}
and wc.crt_time
<
=
#
{endTime}
</if>
<if
test=
"dataCompanyIds != null and dataCompanyIds.size() > 0"
>
and wc.company_id= in
...
...
xx-order/xx-order-server/src/main/resources/mapper/CompanyWaterDetailMapper.xml
View file @
71586efc
...
...
@@ -24,10 +24,10 @@
and d.branch_id=#{branchId}
</if>
<if
test=
"startTime != null and startTime > 0"
>
and d.crt_time >
=
{startTime}
and d.crt_time >
= #
{startTime}
</if>
<if
test=
"endTime != null and endTime > 0"
>
and d.crt_time
<
= {endTime}
and d.crt_time
<
=
#
{endTime}
</if>
<if
test=
"dataCompanyIds != null and dataCompanyIds.size() > 0"
>
and d.company_id= in
...
...
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