| | |
| | | <result column="update_by" property="updateBy" /> |
| | | <result column="update_time" property="updateTime" /> |
| | | <result column="memo" property="memo" /> |
| | | |
| | | </resultMap> |
| | | |
| | | |
| | | <select id="selectByOrderNo" resultMap="BaseResultMap"> |
| | | select |
| | |
| | | and mo.order_no = #{orderNo} |
| | | and mo.host_id = #{hostId} |
| | | </select> |
| | | <select id="selectBatchByOrderNo" resultMap="BaseResultMap"> |
| | | SELECT * FROM man_order_detl WHERE 1 = 1 AND |
| | | <foreach collection="list" index="index" item="orders" open="(" close=")" separator="or"> |
| | | order_no = #{orders.orderNo} |
| | | </foreach> |
| | | </select> |
| | | |
| | | </mapper> |