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.
156 lines
5.3 KiB
XML
156 lines
5.3 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.udi.admin.dao.auth.DeviceKeyDao">
|
|
<select id="findDeviceKey" parameterType="com.glxp.udi.admin.req.info.FilterDeviceKeyRequest"
|
|
resultType="com.glxp.udi.admin.entity.info.DeviceKeyEntity">
|
|
SELECT *
|
|
FROM device_check
|
|
<where>
|
|
<if test="imei != null and imei != ''">
|
|
and imei = #{imei}
|
|
</if>
|
|
<if test="isCheck != null and isCheck != ''">
|
|
and isCheck = #{isCheck}
|
|
</if>
|
|
</where>
|
|
</select>
|
|
|
|
<select id="findDeviceByImei" parameterType="com.glxp.udi.admin.req.info.FilterDeviceKeyRequest"
|
|
resultType="com.glxp.udi.admin.entity.info.DeviceKeyEntity">
|
|
SELECT *
|
|
FROM device_check
|
|
<where>
|
|
<if test="imei != null and imei != ''">
|
|
and imei = #{imei}
|
|
</if>
|
|
</where>
|
|
</select>
|
|
|
|
<update id="updateDeviceKey" parameterType="com.glxp.udi.admin.entity.info.DeviceKeyEntity">
|
|
UPDATE device_check
|
|
<set>
|
|
<if test="isCheck != null">
|
|
isCheck=#{isCheck},
|
|
</if>
|
|
<if test="companyName != null">
|
|
companyName=#{companyName},
|
|
</if>
|
|
<if test="phone != null">
|
|
phone=#{phone},
|
|
</if>
|
|
<if test="contact != null">
|
|
contact=#{contact},
|
|
</if>
|
|
<if test="imeiKey != null">
|
|
imeiKey=#{imeiKey},
|
|
</if>
|
|
<if test="date != null">
|
|
date=#{date},
|
|
</if>
|
|
<if test="creditNum != null">
|
|
creditNum=#{creditNum},
|
|
</if>
|
|
<if test="rgType != null">
|
|
rgType=#{rgType},
|
|
</if>
|
|
<if test="remark != null">
|
|
remark=#{remark},
|
|
</if>
|
|
<if test="customerId != null and customerId != ''">
|
|
customerId=#{customerId},
|
|
</if>
|
|
<if test="applicant != null and applicant != ''">
|
|
applicant=#{applicant},
|
|
</if>
|
|
</set>
|
|
WHERE id = #{id}
|
|
</update>
|
|
|
|
<update id="updateDeviceKeyByImei" parameterType="com.glxp.udi.admin.entity.info.DeviceKeyEntity">
|
|
UPDATE device_check
|
|
<set>
|
|
<if test="isCheck != null">
|
|
isCheck=#{isCheck},
|
|
</if>
|
|
<if test="companyName != null">
|
|
companyName=#{companyName},
|
|
</if>
|
|
<if test="phone != null">
|
|
phone=#{phone},
|
|
</if>
|
|
<if test="contact != null">
|
|
contact=#{contact},
|
|
</if>
|
|
<if test="imeiKey != null">
|
|
imeiKey=#{imeiKey},
|
|
</if>
|
|
<if test="date != null">
|
|
date=#{date},
|
|
</if>
|
|
<if test="imei != null">
|
|
imei=#{imei},
|
|
</if>
|
|
<if test="creditNum != null">
|
|
creditNum=#{creditNum},
|
|
</if>
|
|
<if test="rgType != null">
|
|
rgType=#{rgType},
|
|
</if>
|
|
<if test="remark != null">
|
|
remark=#{remark},
|
|
</if>
|
|
<if test="customerId != null and customerId != ''">
|
|
customerId=#{customerId}
|
|
</if>
|
|
<if test="applicant != null and applicant != ''">
|
|
applicant=#{applicant}
|
|
</if>
|
|
</set>
|
|
WHERE imei=#{imei}
|
|
</update>
|
|
|
|
<insert id="insertDeviceKey" parameterType="com.glxp.udi.admin.entity.info.DeviceKeyEntity">
|
|
replace INTO device_check(imei,
|
|
isCheck,
|
|
companyName,
|
|
phone,
|
|
contact,
|
|
date,
|
|
imeiKey, creditNum, rgType, remark, customerId, applicant)
|
|
values (#{imei},
|
|
#{isCheck},
|
|
#{companyName},
|
|
#{phone},
|
|
#{contact},
|
|
#{date},
|
|
#{imeiKey}, #{creditNum}, #{rgType}, #{remark}, #{customerId},
|
|
#{applicant})
|
|
</insert>
|
|
<delete id="deleteDeviceKey" parameterType="Map">
|
|
DELETE
|
|
FROM device_check
|
|
WHERE id = #{id}
|
|
</delete>
|
|
|
|
<select id="findDeviceKeyByCustomerId" resultType="com.glxp.udi.admin.res.info.DeviceKeyResponse">
|
|
select device.*, customer.customerName
|
|
from device_check device
|
|
left join customer_info customer
|
|
on device.customerId = customer.customerId
|
|
<where>
|
|
<if test="imei != null and imei != ''">
|
|
AND device.imei = #{imei}
|
|
</if>
|
|
<if test="isCheck != null and isCheck != ''">
|
|
AND device.isCheck = #{isCheck}
|
|
</if>
|
|
<if test="customerIds != null and customerIds.size() != 0">
|
|
AND device.customerId in
|
|
<foreach collection="customerIds" index="index" item="item" open="(" close=")" separator=",">
|
|
#{item}
|
|
</foreach>
|
|
</if>
|
|
</where>
|
|
</select>
|
|
</mapper> |