liding
2025-04-25 6c8973d78b04b1aa132dccbd478ba8abbcf2b6c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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.ruoyi.inspect.mapper.ReliabilityPlanMaterialMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.ruoyi.inspect.pojo.ReliabilityPlanMaterial">
        <id column="id" property="id" />
        <result column="material_name" property="materialName" />
        <result column="part_no" property="partNo" />
        <result column="state" property="state" />
        <result column="is_pass" property="isPass" />
        <result column="reviewer_id" property="reviewerId" />
        <result column="reviewer" property="reviewer" />
    </resultMap>
 
</mapper>