From f2cfc6973ec1b43391654b4bd722c2c316d06fc7 Mon Sep 17 00:00:00 2001
From: kaiyu <404897439@qq.com>
Date: Thu, 19 Nov 2020 13:08:24 +0800
Subject: [PATCH] 增加删除天表代码

---
 src/main/resources/mapper/MonitorPointMapper.xml |   33 ++++++++++++++++++++++++++++++++-
 1 files changed, 32 insertions(+), 1 deletions(-)

diff --git a/src/main/resources/mapper/MonitorPointMapper.xml b/src/main/resources/mapper/MonitorPointMapper.xml
index 53cd8f1..479dd35 100644
--- a/src/main/resources/mapper/MonitorPointMapper.xml
+++ b/src/main/resources/mapper/MonitorPointMapper.xml
@@ -1,7 +1,38 @@
 <?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">
-    <select id="getMonitorPointList" resultType="com.moral.entity.MonitorPoint">
+    <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>
+
+    <select id="getMonitorList" resultType="java.lang.Integer">
+        select id
+        from monitor_point
+        where
+        <if test="areaCode != null">
+            area_code = #{areaCode}
+        </if>
+
+        <if test="cityCode != null">
+            city_code = #{cityCode}
+        </if>
+
+        <if test="provinceCode != null">
+            province_code = #{provinceCode}
+        </if>
+    </select>
 </mapper>
\ No newline at end of file

--
Gitblit v1.8.0