2021与蓝度共同重构项目,服务端
liuhaonan
2022-01-05 3d84bc3273c6ef38a304b7af08e8e380ef25c05b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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.sandu.ximon.dao.mapper.BroadcastTerminalV2EntityMapper">
 
    <resultMap id="BaseResultMap" type="com.sandu.ximon.dao.domain.BroadcastTerminalV2Entity">
            <id property="id" column="id" jdbcType="INTEGER"/>
            <result property="terminalName" column="terminal_name" jdbcType="VARCHAR"/>
            <result property="streetlightId" column="streetlight_id" jdbcType="BIGINT"/>
            <result property="bindStates" column="bind_states" jdbcType="INTEGER"/>
            <result property="exist" column="exist" jdbcType="INTEGER"/>
    </resultMap>
 
    <sql id="Base_Column_List">
        id,terminal_name,streetlight_id,
        bind_states,exist
    </sql>
</mapper>