huminmin
2026-06-29 9f1ec3d21f02d38d1a54876fface13301cc65fad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?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.safe.mapper.SafeLineInspectionHazardMapper">
 
    <resultMap type="com.ruoyi.safe.pojo.SafeLineInspectionHazard" id="SafeLineInspectionHazardResult">
        <id property="id" column="id"/>
        <result property="inspectionId" column="inspection_id"/>
        <result property="recordId" column="record_id"/>
        <result property="hazardCode" column="hazard_code"/>
        <result property="hazardDesc" column="hazard_desc"/>
        <result property="hazardLevel" column="hazard_level"/>
        <result property="hazardLocation" column="hazard_location"/>
        <result property="hazardImage" column="hazard_image"/>
        <result property="status" column="status"/>
        <result property="rectifyUserId" column="rectify_user_id"/>
        <result property="rectifyTime" column="rectify_time"/>
        <result property="rectifyDesc" column="rectify_desc"/>
        <result property="createTime" column="create_time"/>
        <result property="createUser" column="create_user"/>
        <result property="tenantId" column="tenant_id"/>
        <result property="deptId" column="dept_id"/>
    </resultMap>
 
</mapper>