*
L
2025-09-21 159a74e35b588f95fd3e9efc4e15733f84cbd829
src/main/resources/mapper/BasArmMastMapper.xml
@@ -25,6 +25,15 @@
    </resultMap>
    <resultMap id="BaseResultMapOrderDetlValue" type="com.zy.asrs.entity.result.OrderDetlValueResultUtil">
        <result column="man_length" property="length" />
        <result column="width" property="width" />
        <result column="height" property="height" />
        <result column="weight" property="weight" />
        <result column="anfme" property="anfme" />
    </resultMap>
    <update id="updateArmMastStatus">
        update asr_bas_arm_mast
        set status = #{endStatus}
@@ -34,4 +43,22 @@
          and status = #{status}
    </update>
    <select id="selectOrderDetlAndSku" parameterType="java.util.Map" resultType="java.lang.Double">
        select
        anfme
        from man_order_detl
        where 1=1
          and order_no = #{orderNo}
          and matnr = #{sku}
    </select>
    <select id="selectOrderDetlValue" resultMap="BaseResultMapOrderDetlValue">
        select
            d.man_length,d.width,d.height,d.weight,d.anfme
        from man_order_detl d
        where 1=1
          and d.order_no = #{orderNo}
          and d.matnr = #{sku}
    </select>
</mapper>