2024-01-17 14:46:28 +08:00
|
|
|
<?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.zcloud.mapper.datasource.mkmj.MkmjAreaGateMapper">
|
|
|
|
|
|
|
|
<!--表名 -->
|
|
|
|
<sql id="tableName">
|
|
|
|
MKMJ_AREA_GATE
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
<!--数据字典表名 -->
|
|
|
|
<sql id="dicTableName">
|
|
|
|
SYS_DICTIONARIES
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
<!-- 字段 -->
|
|
|
|
<sql id="Field">
|
|
|
|
f.AREA_GATE_ID,
|
|
|
|
f.GATE_NUMBER,
|
|
|
|
f.AREA_ID,
|
|
|
|
f.GATE_NAME,
|
|
|
|
f.GATE_TYPE,
|
2024-01-23 17:37:28 +08:00
|
|
|
f.GATE_CATEGORY,
|
2024-01-17 14:46:28 +08:00
|
|
|
f.GATE_MODEL,
|
|
|
|
f.GATE_POSITION,
|
|
|
|
f.IS_ADJACENT,
|
|
|
|
f.ADJACENT_AREA_ID,
|
|
|
|
f.LONGITUDE,
|
|
|
|
f.LATITUDE,
|
|
|
|
f.CORPINFO_ID,
|
|
|
|
f.CREATOR,
|
|
|
|
f.CREATTIME,
|
|
|
|
f.OPERATOR,
|
|
|
|
f.OPERATTIME,
|
|
|
|
f.ISDELETE
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
<!-- 字段用于新增 -->
|
|
|
|
<sql id="Field2">
|
|
|
|
AREA_GATE_ID,
|
|
|
|
GATE_NUMBER,
|
|
|
|
AREA_ID,
|
|
|
|
GATE_NAME,
|
|
|
|
GATE_TYPE,
|
2024-01-23 17:37:28 +08:00
|
|
|
GATE_CATEGORY,
|
2024-01-17 14:46:28 +08:00
|
|
|
GATE_MODEL,
|
|
|
|
GATE_POSITION,
|
|
|
|
IS_ADJACENT,
|
|
|
|
ADJACENT_AREA_ID,
|
|
|
|
LONGITUDE,
|
|
|
|
LATITUDE,
|
|
|
|
CORPINFO_ID,
|
|
|
|
CREATOR,
|
|
|
|
CREATTIME,
|
|
|
|
OPERATOR,
|
|
|
|
OPERATTIME,
|
|
|
|
ISDELETE
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
<!-- 字段值 -->
|
|
|
|
<sql id="FieldValue">
|
|
|
|
#{AREA_GATE_ID},
|
|
|
|
#{GATE_NUMBER},
|
|
|
|
#{AREA_ID},
|
|
|
|
#{GATE_NAME},
|
|
|
|
#{GATE_TYPE},
|
2024-01-23 17:37:28 +08:00
|
|
|
#{GATE_CATEGORY},
|
2024-01-17 14:46:28 +08:00
|
|
|
#{GATE_MODEL},
|
|
|
|
#{GATE_POSITION},
|
|
|
|
#{IS_ADJACENT},
|
|
|
|
#{ADJACENT_AREA_ID},
|
|
|
|
#{LONGITUDE},
|
|
|
|
#{LATITUDE},
|
|
|
|
#{CORPINFO_ID},
|
|
|
|
#{CREATOR},
|
|
|
|
#{CREATTIME},
|
|
|
|
#{OPERATOR},
|
|
|
|
#{OPERATTIME},
|
|
|
|
#{ISDELETE}
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
<!-- 新增-->
|
|
|
|
<insert id="save" parameterType="pd">
|
|
|
|
insert into
|
|
|
|
<include refid="tableName"></include>
|
|
|
|
(
|
|
|
|
<include refid="Field2"></include>
|
|
|
|
) values (
|
|
|
|
<include refid="FieldValue"></include>
|
|
|
|
)
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
<!-- 删除-->
|
|
|
|
<delete id="delete" parameterType="pd">
|
|
|
|
update
|
|
|
|
<include refid="tableName"></include>
|
|
|
|
set
|
|
|
|
ISDELETE = '1'
|
|
|
|
where
|
|
|
|
AREA_GATE_ID = #{AREA_GATE_ID}
|
|
|
|
</delete>
|
|
|
|
|
|
|
|
<!-- 修改 -->
|
|
|
|
<update id="edit" parameterType="pd">
|
|
|
|
update
|
|
|
|
<include refid="tableName"></include>
|
|
|
|
set
|
2024-01-18 16:26:59 +08:00
|
|
|
AREA_GATE_ID= AREA_GATE_ID,
|
2024-01-17 14:46:28 +08:00
|
|
|
GATE_NUMBER=#{GATE_NUMBER},
|
|
|
|
AREA_ID=#{AREA_ID},
|
|
|
|
GATE_NAME=#{GATE_NAME},
|
|
|
|
GATE_TYPE=#{GATE_TYPE},
|
2024-01-23 17:37:28 +08:00
|
|
|
GATE_CATEGORY=#{GATE_CATEGORY},
|
2024-01-17 14:46:28 +08:00
|
|
|
GATE_MODEL=#{GATE_MODEL},
|
|
|
|
GATE_POSITION=#{GATE_POSITION},
|
|
|
|
IS_ADJACENT=#{IS_ADJACENT},
|
|
|
|
ADJACENT_AREA_ID=#{ADJACENT_AREA_ID},
|
|
|
|
LONGITUDE=#{LONGITUDE},
|
|
|
|
LATITUDE=#{LATITUDE},
|
|
|
|
CORPINFO_ID=#{CORPINFO_ID},
|
|
|
|
CREATOR=#{CREATOR},
|
|
|
|
CREATTIME=#{CREATTIME},
|
|
|
|
OPERATOR=#{OPERATOR},
|
|
|
|
OPERATTIME=#{OPERATTIME},
|
|
|
|
ISDELETE=#{ISDELETE}
|
|
|
|
where
|
|
|
|
AREA_GATE_ID=#{AREA_GATE_ID}
|
|
|
|
</update>
|
|
|
|
|
|
|
|
<!-- 通过ID获取数据 -->
|
|
|
|
<select id="findById" parameterType="pd" resultType="pd">
|
|
|
|
select
|
|
|
|
<include refid="Field"></include>
|
|
|
|
from
|
|
|
|
<include refid="tableName"></include> f
|
|
|
|
where
|
|
|
|
f.AREA_GATE_ID=#{AREA_GATE_ID}
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<!-- 列表 -->
|
|
|
|
<select id="datalistPage" parameterType="page" resultType="pd">
|
|
|
|
select
|
|
|
|
<include refid="Field"></include>
|
|
|
|
from
|
|
|
|
<include refid="tableName"></include> f
|
|
|
|
where f.ISDELETE = '0'
|
|
|
|
<if test="pd.KEYWORDS != null and pd.KEYWORDS != ''"><!-- 关键词检索 -->
|
|
|
|
and
|
|
|
|
(
|
|
|
|
<!-- 根据需求自己加检索条件
|
|
|
|
字段1 LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')
|
|
|
|
or
|
|
|
|
字段2 LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')
|
|
|
|
-->
|
|
|
|
)
|
|
|
|
</if>
|
2024-01-18 16:26:59 +08:00
|
|
|
<if test="pd.AREA_ID != null and pd.AREA_ID != ''"><!-- 关键词检索 -->
|
|
|
|
and f.AREA_ID=#{pd.AREA_ID}
|
|
|
|
</if>
|
2024-01-17 14:46:28 +08:00
|
|
|
</select>
|
|
|
|
|
|
|
|
<!-- 列表(全部) -->
|
|
|
|
<select id="listAll" parameterType="pd" resultType="pd">
|
|
|
|
select
|
|
|
|
<include refid="Field"></include>
|
|
|
|
from
|
|
|
|
<include refid="tableName"></include> f
|
|
|
|
where f.ISDELETE = '0'
|
|
|
|
<if test="AREA_ID!='' and AREA_ID != null">
|
|
|
|
and f.AREA_ID = #{AREA_ID}
|
|
|
|
</if>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<!-- 批量删除 -->
|
|
|
|
<delete id="deleteAll" parameterType="String">
|
|
|
|
update
|
|
|
|
<include refid="tableName"></include>
|
|
|
|
set
|
|
|
|
ISDELETE = '1'
|
|
|
|
where
|
|
|
|
AREA_GATE_ID in
|
|
|
|
<foreach item="item" index="index" collection="ArrayDATA_IDS" open="(" separator="," close=")">
|
|
|
|
#{item}
|
|
|
|
</foreach>
|
|
|
|
</delete>
|
|
|
|
|
|
|
|
<!-- 校验名称是否重复 -->
|
|
|
|
<select id="findByOnly" parameterType="pd" resultType="pd">
|
|
|
|
select
|
|
|
|
<include refid="Field"></include>
|
|
|
|
from
|
|
|
|
<include refid="tableName"></include> f
|
|
|
|
where
|
|
|
|
f.ISDELETE = '0'
|
|
|
|
AND f.GATE_NAME = #{GATE_NAME}
|
|
|
|
<if test="AREA_ID!='' and AREA_ID != null">
|
|
|
|
and f.AREA_GATE_ID != #{AREA_GATE_ID}
|
|
|
|
</if>
|
|
|
|
</select>
|
2024-01-23 17:37:28 +08:00
|
|
|
|
|
|
|
<!-- 定位 -->
|
|
|
|
<update id="savePosition" parameterType="pd">
|
|
|
|
update
|
|
|
|
<include refid="tableName"></include>
|
|
|
|
set
|
|
|
|
LATITUDE = #{LATITUDE},
|
|
|
|
LONGITUDE = #{LONGITUDE}
|
|
|
|
where
|
|
|
|
AREA_GATE_ID = #{AREA_GATE_ID}
|
|
|
|
</update>
|
2024-01-17 14:46:28 +08:00
|
|
|
</mapper>
|