workplace
zane 10 months ago
parent 67f5f5c2bc
commit 550d22f90a

@ -114,5 +114,10 @@ public class IoSplitFifoInvRequest extends ListPageRequest {
private String nameCode; private String nameCode;
/**
*
*/
private String keywords;
} }

@ -75,7 +75,19 @@
AND isfi.workPlaceCode = #{workPlaceCode} AND isfi.workPlaceCode = #{workPlaceCode}
</if> </if>
<if test="busType != null and busType != ''"> <if test="busType != null and busType != ''">
ANd isfi.busType = #{busType} AND isfi.busType = #{busType}
</if>
<if test="keywords != null and keywords != ''">
AND (
isfi.workPlaceCode like concat('%', #{keywords}, '%')
or bp.nameCode like concat('%', #{keywords}, '%')
or isfi.batchNo like concat('%', #{keywords}, '%')
or bp.cpmctymc like concat('%', #{keywords}, '%')
or bp.ggxh like concat('%', #{keywords}, '%')
or bp.nameCode like concat('%', #{keywords}, '%')
or bp.zczbhhzbapzbh like concat('%', #{keywords}, '%')
or bp.ylqxzcrbarmc like concat('%', #{keywords}, '%')
)
</if> </if>
</where> </where>
</select> </select>

Loading…
Cancel
Save