自动化立体仓库 - WMS系统
#
Junjie
2023-12-20 ca42a5047cb15ae63035f15a971a8e1ec858851f
src/main/resources/mapper/LocRuleMapper.xml
@@ -24,7 +24,30 @@
        <result column="update_by" property="updateBy" />
        <result column="update_time" property="updateTime" />
        <result column="memo" property="memo" />
        <result column="mixed" property="mixed" />
        <result column="keep_go" property="keepGo" />
    </resultMap>
    <select id="selectByMatnr" resultMap="BaseResultMap">
        select * from asr_loc_rule
        where matnr = #{matnr}
        and mixed = 0
        and status = 1
    </select>
    <select id="selectByMixed" resultMap="BaseResultMap">
        select * from asr_loc_rule
        where mixed = #{mixed}
        and status = 1
    </select>
    <update id="updateKeepGoByMatnr">
        update asr_loc_rule set keep_go = #{keepGo} where matnr = #{matnr}
    </update>
    <update id="updateKeepGoByMixed">
        update asr_loc_rule set keep_go = #{keepGo} where mixed = 1
    </update>
</mapper>