|
|
|
@ -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>
|
|
|
|
|