退料任务,增加是否签字字段和筛选
This commit is contained in:
parent
6039b472ae
commit
b8d00c0fe0
|
|
@ -174,4 +174,9 @@ public class BackApplyInfo implements Serializable {
|
|||
private Integer appTaskStatus;
|
||||
|
||||
private String maStatus;
|
||||
|
||||
/**
|
||||
* 是否签名
|
||||
*/
|
||||
private Integer isSign;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -83,6 +83,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="status != null">
|
||||
and tt.task_status = #{status}
|
||||
</if>
|
||||
<if test="isSign!=null">
|
||||
<if test="isSign==1">
|
||||
and bai.back_sign_url is null
|
||||
</if>
|
||||
<if test="isSign==2">
|
||||
and bai.back_sign_url is not null
|
||||
</if>
|
||||
</if>
|
||||
GROUP BY bai.`code`
|
||||
ORDER BY bai.create_time desc
|
||||
</select>
|
||||
|
|
|
|||
Loading…
Reference in New Issue