diff --git a/zi-wms-pda/src/main/java/com/cim/idm/model/dto/WareHouseEditDto.java b/zi-wms-pda/src/main/java/com/cim/idm/model/dto/WareHouseEditDto.java index eb6d829..f8a1d65 100644 --- a/zi-wms-pda/src/main/java/com/cim/idm/model/dto/WareHouseEditDto.java +++ b/zi-wms-pda/src/main/java/com/cim/idm/model/dto/WareHouseEditDto.java @@ -10,4 +10,8 @@ public class WareHouseEditDto { private String useLocation; // 是否熟化 private String isOven; + // 仓库管理远员 + private String locationUser; + // 是否自动备货 + private String zdbhFlag; } diff --git a/zi-wms-pda/src/main/resources/com/cim/idm/dao/WareHouseDao.xml b/zi-wms-pda/src/main/resources/com/cim/idm/dao/WareHouseDao.xml index 65d0035..e085c02 100644 --- a/zi-wms-pda/src/main/resources/com/cim/idm/dao/WareHouseDao.xml +++ b/zi-wms-pda/src/main/resources/com/cim/idm/dao/WareHouseDao.xml @@ -3,7 +3,8 @@ - update BS_ERPLOCATION set USE_LOCATION = #{dto.useLocation}, IS_OVEN = #{dto.isOven} + update BS_ERPLOCATION set USE_LOCATION = #{dto.useLocation}, IS_OVEN = #{dto.isOven}, + LOCATION_USER = #{dto.locationUser, jdbcType=VARCHAR}, ZDBHFLAG = #{dto.zdbhFlag} where ERPFACTORYNAME = #{dto.erpFactoryName} and ERPLOCATIONNAME = #{dto.erpLocationName}