jinpengyong
2020-07-20 3508a0975f50ea277f59cc034d41d282ab82623c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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.moral.mapper.MonitorPointMapper">
    <resultMap id="BaseResultMap" type="com.moral.entity.MonitorPoint">
        <id column="id" jdbcType="INTEGER" property="id" />
        <result column="name" jdbcType="VARCHAR" property="name" />
        <result column="longitude" jdbcType="REAL" property="longitude" />
        <result column="latitude" jdbcType="REAL" property="latitude" />
        <result column="province_code" jdbcType="INTEGER" property="provinceCode" />
        <result column="city_code" jdbcType="INTEGER" property="cityCode" />
        <result column="area_code" jdbcType="INTEGER" property="areaCode" />
        <result column="organization_id" jdbcType="INTEGER" property="organizationId" />
        <result column="address" jdbcType="VARCHAR" property="address" />
        <result column="is_delete" jdbcType="CHAR" property="isDelete" />
        <result column="description" jdbcType="VARCHAR" property="description" />
        <result column="state" jdbcType="INTEGER" property="state" />
    </resultMap>
    <select id="getMonitorPointList" resultType="com.moral.entity.MonitorPoint" resultMap="BaseResultMap">
            select * from monitor_point
    </select>
</mapper>