<?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>
|