<?xml version="1.0" encoding="UTF-8"?>
|
<!DOCTYPE mapper
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
<mapper namespace="com.ruoyi.warehouse.mapper.WarehouseGoodsShelvesRowcolMapper">
|
|
|
<select id="listPage" resultType="com.ruoyi.warehouse.pojo.WarehouseGoodsShelvesRowcol">
|
select * from warehouse_goods_shelves_rowcol
|
<where>
|
1=1
|
<if test="warehouseGoodsShelvesRowcol.storey != null">
|
and storey = #{warehouseGoodsShelvesRowcol.storey}
|
</if>
|
<if test="warehouseGoodsShelvesRowcol.arrange != null">
|
and arrange = #{warehouseGoodsShelvesRowcol.arrange}
|
</if>
|
<if test="warehouseGoodsShelvesRowcol.warehouseGoodsShelvesId != null">
|
and warehouse_goods_shelves_id = #{warehouseGoodsShelvesRowcol.warehouseGoodsShelvesId}
|
</if>
|
<if test="warehouseGoodsShelvesRowcol.warehouseId != null">
|
and warehouse_id = #{warehouseGoodsShelvesRowcol.warehouseId}
|
</if>
|
</where>
|
</select>
|
|
</mapper>
|