Commit 169d5362 authored by hezhen's avatar hezhen

Merge branch 'master-vehicle-price' into dev-tiande

parents 848ed4cf 9a035668
...@@ -35,6 +35,11 @@ public class WalletCathDTO extends PageParam implements DataInter { ...@@ -35,6 +35,11 @@ public class WalletCathDTO extends PageParam implements DataInter {
private Integer branchId; private Integer branchId;
@ApiModelProperty("提现状态:0-未提现;1-已提现")
private Integer status;
@ApiModelProperty("开始时间") @ApiModelProperty("开始时间")
private Long startTime; private Long startTime;
......
...@@ -23,6 +23,17 @@ ...@@ -23,6 +23,17 @@
<if test="orderNo != null and orderNo != '' "> <if test="orderNo != null and orderNo != '' ">
and wc.order_no like concat('%',#{orderNo},'%') and wc.order_no like concat('%',#{orderNo},'%')
</if> </if>
<if test="status != null ">
and
<choose>
<when test="status == 0">
wc.status in (0 ,2)
</when>
<otherwise>
wc.status =#{status}
</otherwise>
</choose>
</if>
<if test="startTime != null and startTime > 0"> <if test="startTime != null and startTime > 0">
and wc.crt_time > = {startTime} and wc.crt_time > = {startTime}
</if> </if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment