“djh”
2025-11-26 cf4a5deced71464d424ce5931774f6df0c4c6bb3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="UTF-8"?>
<!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>