feat: 单据in查询

workplace
chenhc 11 months ago
parent 76c9764465
commit 08b714b43b

@ -84,5 +84,9 @@ public class CollectOrderRequest extends ListPageRequest {
private List<Integer> tagStatusList;
private Integer tagStatus;
private String workplaceName;
}

@ -16,6 +16,9 @@
<if test="billNo != '' and billNo != null">
AND billNo LIKE concat('%', #{billNo}, '%')
</if>
<if test="workplaceName != '' and workplaceName != null">
AND workplaceName LIKE concat('%', #{workplaceName}, '%')
</if>
<if test="busType != null and busType != ''">
AND busType = #{busType}
</if>
@ -31,6 +34,9 @@
<if test="busType != null and busType != ''">
AND busType = #{busType}
</if>
<if test="tagStatus != null">
AND tagStatus = #{tagStatus}
</if>
<if test="workPlaceCode != null and workPlaceCode != ''">
AND workPlaceCode = #{workPlaceCode}
</if>

Loading…
Cancel
Save