You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udisyncdl-java/src/main/resources/mybatis/mapper/udid/ContactlistMapper.xml

242 lines
10 KiB
XML

<?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.glxp.udidl.admin.dao.udid.ContactlistMapper">
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.udid.Contactlist">
<id column="id" jdbcType="INTEGER" property="id"/>
<result column="deviceRecordKey" jdbcType="VARCHAR" property="devicerecordkey"/>
<result column="qylxrcz" jdbcType="VARCHAR" property="qylxrcz"/>
<result column="qylxrdh" jdbcType="VARCHAR" property="qylxrdh"/>
<result column="qylxryx" jdbcType="VARCHAR" property="qylxryx"/>
<result column="uuid" jdbcType="VARCHAR" property="uuid"/>
</resultMap>
<sql id="Example_Where_Clause">
<where>
<foreach collection="oredCriteria" item="criteria" separator="or">
<if test="criteria.valid">
<trim prefix="(" prefixOverrides="and" suffix=")">
<foreach collection="criteria.criteria" item="criterion">
<choose>
<when test="criterion.noValue">
and ${criterion.condition}
</when>
<when test="criterion.singleValue">
and ${criterion.condition} #{criterion.value}
</when>
<when test="criterion.betweenValue">
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when test="criterion.listValue">
and ${criterion.condition}
<foreach close=")" collection="criterion.value" item="listItem" open="("
separator=",">
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql id="Update_By_Example_Where_Clause">
<where>
<foreach collection="example.oredCriteria" item="criteria" separator="or">
<if test="criteria.valid">
<trim prefix="(" prefixOverrides="and" suffix=")">
<foreach collection="criteria.criteria" item="criterion">
<choose>
<when test="criterion.noValue">
and ${criterion.condition}
</when>
<when test="criterion.singleValue">
and ${criterion.condition} #{criterion.value}
</when>
<when test="criterion.betweenValue">
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when test="criterion.listValue">
and ${criterion.condition}
<foreach close=")" collection="criterion.value" item="listItem" open="("
separator=",">
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql id="Base_Column_List">
id, deviceRecordKey, qylxrcz, qylxrdh, qylxryx, uuid
</sql>
<select id="selectByExample" parameterType="com.glxp.udidl.admin.entity.udid.ContactlistExample"
resultMap="BaseResultMap">
select
<if test="distinct">
distinct
</if>
<include refid="Base_Column_List"/>
from contactlist
<if test="_parameter != null">
<include refid="Example_Where_Clause"/>
</if>
<if test="orderByClause != null">
order by ${orderByClause}
</if>
</select>
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from contactlist
where id = #{id,jdbcType=INTEGER}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
delete from contactlist
where id = #{id,jdbcType=INTEGER}
</delete>
<delete id="deleteByExample" parameterType="com.glxp.udidl.admin.entity.udid.ContactlistExample">
delete from contactlist
<if test="_parameter != null">
<include refid="Example_Where_Clause"/>
</if>
</delete>
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.udid.Contactlist">
insert into contactlist ( deviceRecordKey, qylxrcz,
qylxrdh, qylxryx, uuid
)
values ( #{devicerecordkey,jdbcType=VARCHAR}, #{qylxrcz,jdbcType=VARCHAR},
#{qylxrdh,jdbcType=VARCHAR}, #{qylxryx,jdbcType=VARCHAR}, #{uuid,jdbcType=VARCHAR}
)
</insert>
<insert id="insertSelective" parameterType="com.glxp.udidl.admin.entity.udid.Contactlist">
insert into contactlist
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">
id,
</if>
<if test="devicerecordkey != null">
deviceRecordKey,
</if>
<if test="qylxrcz != null">
qylxrcz,
</if>
<if test="qylxrdh != null">
qylxrdh,
</if>
<if test="qylxryx != null">
qylxryx,
</if>
<if test="uuid != null">
uuid,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">
#{id,jdbcType=INTEGER},
</if>
<if test="devicerecordkey != null">
#{devicerecordkey,jdbcType=VARCHAR},
</if>
<if test="qylxrcz != null">
#{qylxrcz,jdbcType=VARCHAR},
</if>
<if test="qylxrdh != null">
#{qylxrdh,jdbcType=VARCHAR},
</if>
<if test="qylxryx != null">
#{qylxryx,jdbcType=VARCHAR},
</if>
<if test="uuid != null">
#{uuid,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<select id="countByExample" parameterType="com.glxp.udidl.admin.entity.udid.ContactlistExample"
resultType="java.lang.Long">
select count(*) from contactlist
<if test="_parameter != null">
<include refid="Example_Where_Clause"/>
</if>
</select>
<update id="updateByExampleSelective" parameterType="map">
update contactlist
<set>
<if test="record.id != null">
id = #{record.id,jdbcType=INTEGER},
</if>
<if test="record.devicerecordkey != null">
deviceRecordKey = #{record.devicerecordkey,jdbcType=VARCHAR},
</if>
<if test="record.qylxrcz != null">
qylxrcz = #{record.qylxrcz,jdbcType=VARCHAR},
</if>
<if test="record.qylxrdh != null">
qylxrdh = #{record.qylxrdh,jdbcType=VARCHAR},
</if>
<if test="record.qylxryx != null">
qylxryx = #{record.qylxryx,jdbcType=VARCHAR},
</if>
<if test="record.uuid != null">
uuid = #{record.uuid,jdbcType=VARCHAR},
</if>
</set>
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause"/>
</if>
</update>
<update id="updateByExample" parameterType="map">
update contactlist
set id = #{record.id,jdbcType=INTEGER},
deviceRecordKey = #{record.devicerecordkey,jdbcType=VARCHAR},
qylxrcz = #{record.qylxrcz,jdbcType=VARCHAR},
qylxrdh = #{record.qylxrdh,jdbcType=VARCHAR},
qylxryx = #{record.qylxryx,jdbcType=VARCHAR},
uuid = #{record.uuid,jdbcType=VARCHAR}
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause"/>
</if>
</update>
<update id="updateByPrimaryKeySelective" parameterType="com.glxp.udidl.admin.entity.udid.Contactlist">
update contactlist
<set>
<if test="devicerecordkey != null">
deviceRecordKey = #{devicerecordkey,jdbcType=VARCHAR},
</if>
<if test="qylxrcz != null">
qylxrcz = #{qylxrcz,jdbcType=VARCHAR},
</if>
<if test="qylxrdh != null">
qylxrdh = #{qylxrdh,jdbcType=VARCHAR},
</if>
<if test="qylxryx != null">
qylxryx = #{qylxryx,jdbcType=VARCHAR},
</if>
<if test="uuid != null">
uuid = #{uuid,jdbcType=VARCHAR},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.udid.Contactlist">
update contactlist
set deviceRecordKey = #{devicerecordkey,jdbcType=VARCHAR},
qylxrcz = #{qylxrcz,jdbcType=VARCHAR},
qylxrdh = #{qylxrdh,jdbcType=VARCHAR},
qylxryx = #{qylxryx,jdbcType=VARCHAR},
uuid = #{uuid,jdbcType=VARCHAR}
where id = #{id,jdbcType=INTEGER}
</update>
<select id="downloadContactlist" parameterType="com.glxp.udidl.admin.req.DownloadUdiRequest"
resultMap="BaseResultMap">
select * from contactlist
limit #{page},#{limit}
</select>
<select id="dlConnacts" parameterType="com.glxp.udidl.admin.req.DlConnactRequest"
resultMap="BaseResultMap">
select * from contactlist
</select>
</mapper>