From 7661cf3c3725cd3a9057625ea4a5f1add9001f25 Mon Sep 17 00:00:00 2001 From: liyong <18434998025@163.com> Date: 星期五, 15 八月 2025 09:40:14 +0800 Subject: [PATCH] feat: 仓库货架修改 --- src/main/resources/mapper/warehouse/WarehouseGoodsShelvesRowcolMapper.xml | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main/resources/mapper/warehouse/WarehouseGoodsShelvesRowcolMapper.xml b/src/main/resources/mapper/warehouse/WarehouseGoodsShelvesRowcolMapper.xml index f3f4d90..58479b1 100644 --- a/src/main/resources/mapper/warehouse/WarehouseGoodsShelvesRowcolMapper.xml +++ b/src/main/resources/mapper/warehouse/WarehouseGoodsShelvesRowcolMapper.xml @@ -9,17 +9,17 @@ select * from warehouse_goods_shelves_rowcol <where> 1=1 - <if test="storey != null"> - and storey = #{storey} + <if test="warehouseGoodsShelvesRowcol.storey != null"> + and storey = #{warehouseGoodsShelvesRowcol.storey} </if> - <if test="arrange != null"> - and arrange = #{arrange} + <if test="warehouseGoodsShelvesRowcol.arrange != null"> + and arrange = #{warehouseGoodsShelvesRowcol.arrange} </if> - <if test="warehouseGoodsShelvesId != null"> - and warehouse_goods_shelves_id = #{warehouseGoodsShelvesId} + <if test="warehouseGoodsShelvesRowcol.warehouseGoodsShelvesId != null"> + and warehouse_goods_shelves_id = #{warehouseGoodsShelvesRowcol.warehouseGoodsShelvesId} </if> - <if test="warehouseId != null"> - and warehouse_id = #{warehouseId} + <if test="warehouseGoodsShelvesRowcol.warehouseId != null"> + and warehouse_id = #{warehouseGoodsShelvesRowcol.warehouseId} </if> </where> </select> -- Gitblit v1.9.3