| | |
| | | <id column="id" property="id" /> |
| | | <result column="host_id" property="hostId" /> |
| | | <result column="order_id" property="orderId" /> |
| | | <result column="order_no" property="orderNo" /> |
| | | <result column="anfme" property="anfme" /> |
| | | <result column="matnr" property="matnr" /> |
| | | <result column="maktx" property="maktx" /> |
| | |
| | | <result column="update_by" property="updateBy" /> |
| | | <result column="update_time" property="updateTime" /> |
| | | <result column="memo" property="memo" /> |
| | | |
| | | <result column="in_qty" property="inQty" /> |
| | | <result column="qua_status" property="quaStatus" /> |
| | | </resultMap> |
| | | |
| | | <select id="selectByOrderNo" resultMap="BaseResultMap"> |
| | | <select id="selectByOrderNo" resultType="zy.cloud.wms.manager.entity.ReceiveDetl"> |
| | | select |
| | | mod.* |
| | | from man_order_detl mod |
| | | left join man_order mo on mo.id = mod.order_id |
| | | mod.* |
| | | from man_receive_detl mod |
| | | left join man_order mo on mo.id = mod.order_id |
| | | where 1=1 |
| | | and mo.order_no = #{orderNo} |
| | | and mo.host_id = #{hostId} |
| | | and mo.order_no = #{orderNo} |
| | | and mo.host_id = #{hostId} |
| | | </select> |
| | | |
| | | </mapper> |