From 3152a4e4dadcd6ebfb8e882aa356d063416d49cc Mon Sep 17 00:00:00 2001
From: kaiyu <404897439@qq.com>
Date: Tue, 24 Nov 2020 09:58:26 +0800
Subject: [PATCH] Merge branch 'master' of http://blit.7drlb.com:8888/r/screen_job

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

diff --git a/src/main/resources/mapper/MonitorPointMapper.xml b/src/main/resources/mapper/MonitorPointMapper.xml
index 3914466..479dd35 100644
--- a/src/main/resources/mapper/MonitorPointMapper.xml
+++ b/src/main/resources/mapper/MonitorPointMapper.xml
@@ -18,4 +18,21 @@
     <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