yangys
2025-04-11 120755e6874893d284fda5f617924d46960286c0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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.qianwen.smartman.modules.tpm.mapper.CheckRecordItemMapper">
 
 
    <select id="listItem" resultType="com.qianwen.smartman.modules.tpm.vo.CheckRecordItemVO">
        select id,
               item_id        itemId,
               check_value    checkValue,
               name,
               value_type     valueType,
               requirement,
               standard_value standardValue
        from blade_check_record_item
        where is_deleted = 0
          and check_record_id = #{id}
        order by create_time desc
    </select>
</mapper>