修改耗材字典查询问题

master
wangwei 2 years ago
parent 821ffc247c
commit e1c9815c49

@ -66,4 +66,6 @@ public class FilterUdiRelRequest extends ListPageRequest {
private String certIdFk;
private String manufactory;
private String tyshxydm;
private Boolean dispatch;
private Boolean groupBuy;
}

@ -410,6 +410,12 @@
<if test="manufactory != null and manufactory != ''">
and manufactory LIKE concat('%',#{manufactory},'%')
</if>
<if test="dispatch != null">
and basic_udirel.dispatch = #{dispatch}
</if>
<if test="groupBuy != null">
and basic_udirel.groupBuy = #{groupBuy}
</if>
</where>
ORDER BY modifyTime DESC
</select>

Loading…
Cancel
Save