|
|
|
@ -27,112 +27,6 @@
|
|
|
|
|
</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
|
|
|
|
|