| | |
| | | <result column="update_by" property="updateBy" /> |
| | | <result column="update_time" property="updateTime" /> |
| | | <result column="memo" property="memo" /> |
| | | <result column="owner" property="owner" /> |
| | | |
| | | </resultMap> |
| | | |
| | |
| | | where 1=1 |
| | | and order_id = #{orderId} |
| | | and qty < anfme |
| | | </select> |
| | | |
| | | <select id="selectTotalDetls" resultMap="BaseResultMap"> |
| | | select * from man_order_detl |
| | | where 1=1 |
| | | and order_id = #{orderId} |
| | | </select> |
| | | |
| | | <sql id="pakOutPageCondition"> |
| | |
| | | and order_id = #{orderId} |
| | | </update> |
| | | |
| | | <select id="selectRemainder" resultMap="BaseResultMap"> |
| | | select |
| | | * |
| | | from man_order_detl |
| | | where 1=1 |
| | | and anfme > qty |
| | | and order_id = #{orderId} |
| | | </select> |
| | | |
| | | </mapper> |