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.
248 lines
9.2 KiB
XML
248 lines
9.2 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.DevicepackageMapper">
|
|
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.udid.Devicepackage">
|
|
<id column="id" jdbcType="INTEGER" property="id" />
|
|
<result column="bzcpbs" jdbcType="VARCHAR" property="bzcpbs" />
|
|
<result column="bznhxyjbzcpbs" jdbcType="VARCHAR" property="bznhxyjbzcpbs" />
|
|
<result column="cpbzjb" jdbcType="VARCHAR" property="cpbzjb" />
|
|
<result column="bznhxyjcpbssl" jdbcType="INTEGER" property="bznhxyjcpbssl" />
|
|
<result column="deviceRecordKey" jdbcType="VARCHAR" property="devicerecordkey" />
|
|
<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, bzcpbs, bznhxyjbzcpbs, cpbzjb, bznhxyjcpbssl, deviceRecordKey, uuid
|
|
</sql>
|
|
<select id="selectByExample" parameterType="com.glxp.udidl.admin.entity.udid.DevicepackageExample" resultMap="BaseResultMap">
|
|
select
|
|
<if test="distinct">
|
|
distinct
|
|
</if>
|
|
<include refid="Base_Column_List" />
|
|
from devicepackage
|
|
<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 devicepackage
|
|
where id = #{id,jdbcType=INTEGER}
|
|
</select>
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
|
delete from devicepackage
|
|
where id = #{id,jdbcType=INTEGER}
|
|
</delete>
|
|
<delete id="deleteByExample" parameterType="com.glxp.udidl.admin.entity.udid.DevicepackageExample">
|
|
delete from devicepackage
|
|
<if test="_parameter != null">
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</delete>
|
|
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.udid.Devicepackage">
|
|
insert into devicepackage (bzcpbs, bznhxyjbzcpbs,
|
|
cpbzjb, bznhxyjcpbssl, deviceRecordKey,
|
|
uuid)
|
|
values ( #{bzcpbs,jdbcType=VARCHAR}, #{bznhxyjbzcpbs,jdbcType=VARCHAR},
|
|
#{cpbzjb,jdbcType=VARCHAR}, #{bznhxyjcpbssl,jdbcType=INTEGER}, #{devicerecordkey,jdbcType=VARCHAR},
|
|
#{uuid,jdbcType=VARCHAR})
|
|
</insert>
|
|
<insert id="insertSelective" parameterType="com.glxp.udidl.admin.entity.udid.Devicepackage">
|
|
insert into devicepackage
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="id != null">
|
|
id,
|
|
</if>
|
|
<if test="bzcpbs != null">
|
|
bzcpbs,
|
|
</if>
|
|
<if test="bznhxyjbzcpbs != null">
|
|
bznhxyjbzcpbs,
|
|
</if>
|
|
<if test="cpbzjb != null">
|
|
cpbzjb,
|
|
</if>
|
|
<if test="bznhxyjcpbssl != null">
|
|
bznhxyjcpbssl,
|
|
</if>
|
|
<if test="devicerecordkey != null">
|
|
deviceRecordKey,
|
|
</if>
|
|
<if test="uuid != null">
|
|
uuid,
|
|
</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="id != null">
|
|
#{id,jdbcType=INTEGER},
|
|
</if>
|
|
<if test="bzcpbs != null">
|
|
#{bzcpbs,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="bznhxyjbzcpbs != null">
|
|
#{bznhxyjbzcpbs,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="cpbzjb != null">
|
|
#{cpbzjb,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="bznhxyjcpbssl != null">
|
|
#{bznhxyjcpbssl,jdbcType=INTEGER},
|
|
</if>
|
|
<if test="devicerecordkey != null">
|
|
#{devicerecordkey,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="uuid != null">
|
|
#{uuid,jdbcType=VARCHAR},
|
|
</if>
|
|
</trim>
|
|
</insert>
|
|
<select id="countByExample" parameterType="com.glxp.udidl.admin.entity.udid.DevicepackageExample" resultType="java.lang.Long">
|
|
select count(*) from devicepackage
|
|
<if test="_parameter != null">
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</select>
|
|
<update id="updateByExampleSelective" parameterType="map">
|
|
update devicepackage
|
|
<set>
|
|
<if test="record.id != null">
|
|
id = #{record.id,jdbcType=INTEGER},
|
|
</if>
|
|
<if test="record.bzcpbs != null">
|
|
bzcpbs = #{record.bzcpbs,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.bznhxyjbzcpbs != null">
|
|
bznhxyjbzcpbs = #{record.bznhxyjbzcpbs,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.cpbzjb != null">
|
|
cpbzjb = #{record.cpbzjb,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.bznhxyjcpbssl != null">
|
|
bznhxyjcpbssl = #{record.bznhxyjcpbssl,jdbcType=INTEGER},
|
|
</if>
|
|
<if test="record.devicerecordkey != null">
|
|
deviceRecordKey = #{record.devicerecordkey,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 devicepackage
|
|
set id = #{record.id,jdbcType=INTEGER},
|
|
bzcpbs = #{record.bzcpbs,jdbcType=VARCHAR},
|
|
bznhxyjbzcpbs = #{record.bznhxyjbzcpbs,jdbcType=VARCHAR},
|
|
cpbzjb = #{record.cpbzjb,jdbcType=VARCHAR},
|
|
bznhxyjcpbssl = #{record.bznhxyjcpbssl,jdbcType=INTEGER},
|
|
deviceRecordKey = #{record.devicerecordkey,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.Devicepackage">
|
|
update devicepackage
|
|
<set>
|
|
<if test="bzcpbs != null">
|
|
bzcpbs = #{bzcpbs,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="bznhxyjbzcpbs != null">
|
|
bznhxyjbzcpbs = #{bznhxyjbzcpbs,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="cpbzjb != null">
|
|
cpbzjb = #{cpbzjb,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="bznhxyjcpbssl != null">
|
|
bznhxyjcpbssl = #{bznhxyjcpbssl,jdbcType=INTEGER},
|
|
</if>
|
|
<if test="devicerecordkey != null">
|
|
deviceRecordKey = #{devicerecordkey,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.Devicepackage">
|
|
update devicepackage
|
|
set bzcpbs = #{bzcpbs,jdbcType=VARCHAR},
|
|
bznhxyjbzcpbs = #{bznhxyjbzcpbs,jdbcType=VARCHAR},
|
|
cpbzjb = #{cpbzjb,jdbcType=VARCHAR},
|
|
bznhxyjcpbssl = #{bznhxyjcpbssl,jdbcType=INTEGER},
|
|
deviceRecordKey = #{devicerecordkey,jdbcType=VARCHAR},
|
|
uuid = #{uuid,jdbcType=VARCHAR}
|
|
where id = #{id,jdbcType=INTEGER}
|
|
</update>
|
|
|
|
<select id="downloadDevicepackage" parameterType="com.glxp.udidl.admin.req.DownloadUdiRequest" resultMap="BaseResultMap">
|
|
select * from devicepackage
|
|
limit #{page},#{limit}
|
|
</select>
|
|
</mapper> |