| | |
| | | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.gkhy.exam.system.mapper.WarehousingRecordDetailsMapper"> |
| | | |
| | | |
| | | <select id="selectWarehousingRecordDetailList" resultType="com.gkhy.exam.system.domain.WarehousingRecordDetails" parameterType="com.gkhy.exam.system.domain.WarehousingRecord"> |
| | | |
| | | select a.* from warehousing_record_details a |
| | | left join warehousing_record b on a.record_id = b.id |
| | | where del_flag = 0 and b.del_flag = 0 |
| | | |
| | | </select> |
| | | |
| | | </mapper> |