| | |
| | | <result column="update_by" property="updateBy" /> |
| | | <result column="update_time" property="updateTime" /> |
| | | <result column="memo" property="memo" /> |
| | | <result column="mixed" property="mixed" /> |
| | | <result column="keep_go" property="keepGo" /> |
| | | |
| | | </resultMap> |
| | | |
| | | <select id="selectByMatnr" resultMap="BaseResultMap"> |
| | | select * from asr_loc_rule |
| | | where matnr = #{matnr} |
| | | and mixed = 0 |
| | | and status = 1 |
| | | </select> |
| | | |
| | | <select id="selectByMixed" resultMap="BaseResultMap"> |
| | | select top 1 * from asr_loc_rule |
| | | where mixed = #{mixed} |
| | | and status = 1 |
| | | </select> |
| | | |
| | | </mapper> |