仓库信息编辑

This commit is contained in:
王帅 2025-05-20 18:09:42 +08:00
parent 5ef45cc258
commit 792d0ebfc1
2 changed files with 6 additions and 1 deletions

View File

@ -10,4 +10,8 @@ public class WareHouseEditDto {
private String useLocation; private String useLocation;
// 是否熟化 // 是否熟化
private String isOven; private String isOven;
// 仓库管理远员
private String locationUser;
// 是否自动备货
private String zdbhFlag;
} }

View File

@ -3,7 +3,8 @@
<mapper namespace="com.cim.idm.dao.WareHouseDao"> <mapper namespace="com.cim.idm.dao.WareHouseDao">
<update id="edit"> <update id="edit">
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} where ERPFACTORYNAME = #{dto.erpFactoryName} and ERPLOCATIONNAME = #{dto.erpLocationName}
</update> </update>