#
Junjie
2025-07-25 201ba72b161ebf521ec3b34332ccef55d25aa5f8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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.zy.asrs.mapper.DeviceConfigMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.zy.asrs.entity.DeviceConfig">
        <id column="id" property="id" />
        <result column="ip" property="ip" />
        <result column="port" property="port" />
        <result column="thread_impl" property="threadImpl" />
        <result column="create_time" property="createTime" />
        <result column="device_type" property="deviceType" />
        <result column="device_no" property="deviceNo" />
        <result column="fake" property="fake" />
        <result column="fake_init_status" property="fakeInitStatus" />
        <result column="gateway_id" property="gatewayId" />
 
    </resultMap>
 
</mapper>