自动化立体仓库 - WMS系统
pang.jiabao
2024-10-15 339e9414d6962316d2f32aa77efc82b23fcfcb58
src/main/java/com/zy/asrs/mapper/MatMapper.java
@@ -4,6 +4,7 @@
import com.baomidou.mybatisplus.plugins.Page;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Update;
import org.springframework.stereotype.Repository;
import com.zy.asrs.entity.Mat;
@@ -25,4 +26,7 @@
    Integer getStockOutPageCount(Map<String, Object> map);
    @Update("update man_mat set origin= #{boxPos},barcode=#{barcode} where brand= #{packageGroupNo}")
    Integer updateBoxPos(@Param("packageGroupNo") String packageGroupNo, @Param("boxPos") String boxPos,@Param("barcode") String barcode);
}