唐耀东
2022-05-12 ede630639ad494189282c2c02dbcd4b88741cc30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?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.oa.mapper.SgIotMapper">
 
    <resultMap type="com.ruoyi.oa.domain.SgIot" id="SgIotResult">
        <result property="id" column="id"/>
        <result property="deploymentName" column="deployment_name"/>
        <result property="edition" column="edition"/>
        <result property="lan" column="lan"/>
        <result property="ip" column="ip"/>
        <result property="buildingId" column="building_id"/>
        <result property="organizationId" column="organization_id"/>
        <result property="constructionBatchId" column="construction_batch_id"/>
        <result property="serialNumber" column="serial_number"/>
        <result property="model" column="model"/>
        <result property="manufacturerId" column="manufacturer_id"/>
        <result property="monitorObject" column="monitor_object"/>
        <result property="passagewayOne" column="passageway_one"/>
        <result property="passagewayTwo" column="passageway_two"/>
        <result property="passagewayThree" column="passageway_three"/>
        <result property="passagewayFour" column="passageway_four"/>
        <result property="createBy" column="create_by"/>
        <result property="createTime" column="create_time"/>
        <result property="updateBy" column="update_by"/>
        <result property="updateTime" column="update_time"/>
        <result property="delFlag" column="del_flag"/>
    </resultMap>
 
 
</mapper>