This commit is contained in:
linfso 2024-07-16 06:57:03 +08:00
parent 437a65877e
commit 0761da96aa

View File

@ -50,7 +50,7 @@
<include refid="selectWmsWarehouseVo"/>
<where>
<if test="id != null "> and id = #{id}</if>
<if test="code != null and code != ''"> and code like concat('%', #{code}, '%')</if>
<if test="code != null and code != ''"> and code=#{code}</if>
<if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
<if test="intefaceType != null and intefaceType != ''"> and inteface_type like concat('%', #{intefaceType}, '%')</if>
<if test="warehouseType != null and warehouseType != ''"> and warehouse_type like concat('%', #{warehouseType}, '%')</if>
@ -84,6 +84,10 @@
<if test="updateBy != null and updateBy != ''"> and update_by like concat('%', #{updateBy}, '%')</if>
<if test="updateTime != null "> and update_time = #{updateTime}</if>
<if test="remark != null and remark != ''"> and remark like concat('%', #{remark}, '%')</if>
<if test="searchValue != null and searchValue != ''"> and name like concat('%', #{searchValue}, '%')</if>
</where>
order by create_time desc
</select>