| | |
| | | |
| | | </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} |
| | |
| | | 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> |