|
|
|
@ -2,10 +2,10 @@
|
|
|
|
|
<!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.udi.ProductInfoMapper">
|
|
|
|
|
|
|
|
|
|
<select id="filterProductInfo" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
|
|
|
|
|
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
|
|
|
|
|
SELECT * FROM productinfo
|
|
|
|
|
SELECT *
|
|
|
|
|
FROM productinfo
|
|
|
|
|
<where>
|
|
|
|
|
<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null">
|
|
|
|
|
AND ylqxzcrbarmc LIKE concat(#{ylqxzcrbarmc}, '%')
|
|
|
|
@ -29,18 +29,18 @@
|
|
|
|
|
AND tyshxydm = #{tyshxydm}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="updateTime != null and updateTime != ''">
|
|
|
|
|
<![CDATA[ and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S')>= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S') ]]>
|
|
|
|
|
<![CDATA[
|
|
|
|
|
and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') >= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S')
|
|
|
|
|
]]>
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</where>
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<select id="filterCpmctymc" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
|
|
|
|
|
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
|
|
|
|
|
select * from productinfo
|
|
|
|
|
select *
|
|
|
|
|
from productinfo
|
|
|
|
|
<where>
|
|
|
|
|
<if test="tyshxydm != '' and tyshxydm != null">
|
|
|
|
|
AND tyshxydm = #{tyshxydm}
|
|
|
|
@ -55,7 +55,9 @@
|
|
|
|
|
AND uuid = #{uuid}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="updateTime != null and updateTime != ''">
|
|
|
|
|
<![CDATA[ and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S')>= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S') ]]>
|
|
|
|
|
<![CDATA[
|
|
|
|
|
and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') >= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S')
|
|
|
|
|
]]>
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
GROUP BY cpmctymc
|
|
|
|
@ -64,7 +66,8 @@
|
|
|
|
|
|
|
|
|
|
<select id="filterUdiByTyshxydm" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
|
|
|
|
|
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
|
|
|
|
|
SELECT * FROM productinfo
|
|
|
|
|
SELECT *
|
|
|
|
|
FROM productinfo
|
|
|
|
|
<where>
|
|
|
|
|
diType = 1
|
|
|
|
|
<if test="tyshxydm != '' and tyshxydm != null">
|
|
|
|
@ -80,7 +83,9 @@
|
|
|
|
|
AND uuid = #{uuid}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="updateTime != null and updateTime != ''">
|
|
|
|
|
<![CDATA[ and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S')>= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S') ]]>
|
|
|
|
|
<![CDATA[
|
|
|
|
|
and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') >= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S')
|
|
|
|
|
]]>
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
GROUP BY nameCode
|
|
|
|
@ -88,7 +93,8 @@
|
|
|
|
|
|
|
|
|
|
<select id="selectAllByUuid" parameterType="java.util.List"
|
|
|
|
|
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
|
|
|
|
|
select * from productinfo where
|
|
|
|
|
select *
|
|
|
|
|
from productinfo where
|
|
|
|
|
uuid in (
|
|
|
|
|
<foreach collection="ids" item="item" index="index"
|
|
|
|
|
separator=",">
|
|
|
|
@ -107,12 +113,12 @@
|
|
|
|
|
<!-- CHAR_LENGTH(nameCode) <![CDATA[ >= ]]> 14-->
|
|
|
|
|
<select id="filterUdiByCreditNo" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
|
|
|
|
|
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
|
|
|
|
|
|
|
|
|
|
select p.* from productinfo p INNER JOIN
|
|
|
|
|
(select deviceRecordKey ,max(versionNumber) versionNumber from productinfo
|
|
|
|
|
select p.* from productinfo p
|
|
|
|
|
INNER JOIN
|
|
|
|
|
(select deviceRecordKey, max(versionNumber) versionNumber
|
|
|
|
|
from productinfo
|
|
|
|
|
|
|
|
|
|
<where>
|
|
|
|
|
|
|
|
|
|
<if test="tyshxydm != '' and tyshxydm != null">
|
|
|
|
|
AND tyshxydm = #{tyshxydm}
|
|
|
|
|
</if>
|
|
|
|
@ -138,8 +144,8 @@
|
|
|
|
|
|
|
|
|
|
<select id="filterUdiByNewest" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
|
|
|
|
|
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
|
|
|
|
|
|
|
|
|
|
SELECT * FROM productinfo
|
|
|
|
|
SELECT *
|
|
|
|
|
FROM productinfo
|
|
|
|
|
<where>
|
|
|
|
|
<if test="tyshxydm != '' and tyshxydm != null">
|
|
|
|
|
AND tyshxydm = #{tyshxydm}
|
|
|
|
@ -161,9 +167,10 @@
|
|
|
|
|
|
|
|
|
|
<select id="filterUuidByCreditNo" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
|
|
|
|
|
resultType="java.lang.String">
|
|
|
|
|
|
|
|
|
|
select p.uuid from productinfo p INNER JOIN
|
|
|
|
|
(select deviceRecordKey ,max(versionNumber) versionNumber from productinfo
|
|
|
|
|
select p.uuid from productinfo p
|
|
|
|
|
INNER JOIN
|
|
|
|
|
(select deviceRecordKey, max(versionNumber) versionNumber
|
|
|
|
|
from productinfo
|
|
|
|
|
|
|
|
|
|
<where>
|
|
|
|
|
<if test="tyshxydm != '' and tyshxydm != null">
|
|
|
|
@ -185,8 +192,8 @@
|
|
|
|
|
</select>
|
|
|
|
|
<select id="filterUdi" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
|
|
|
|
|
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
|
|
|
|
|
|
|
|
|
|
select * from productinfo
|
|
|
|
|
select *
|
|
|
|
|
from productinfo
|
|
|
|
|
<where>
|
|
|
|
|
<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null">
|
|
|
|
|
AND ylqxzcrbarmc = #{ylqxzcrbarmc}
|
|
|
|
@ -216,7 +223,9 @@
|
|
|
|
|
AND deviceRecordKey = #{deviceRecordKey}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="updateTime != null and updateTime != ''">
|
|
|
|
|
<![CDATA[ and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S')>= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S') ]]>
|
|
|
|
|
<![CDATA[
|
|
|
|
|
and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') >= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S')
|
|
|
|
|
]]>
|
|
|
|
|
</if>
|
|
|
|
|
<if test="isNewest != null and isNewest != ''">
|
|
|
|
|
AND isNewest = #{isNewest}
|
|
|
|
@ -226,19 +235,63 @@
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<select id="selectByUpdateTime"
|
|
|
|
|
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
|
|
|
|
|
select * from productinfo where
|
|
|
|
|
select *
|
|
|
|
|
from productinfo
|
|
|
|
|
where
|
|
|
|
|
<![CDATA[ DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') >= DATE_FORMAT(#{startDate}, '%Y-%m-%d %H:%i:%S') ]]>
|
|
|
|
|
and
|
|
|
|
|
<![CDATA[ DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S')<= DATE_FORMAT(#{endDate}, '%Y-%m-%d %H:%i:%S') ]]>
|
|
|
|
|
<![CDATA[ DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') <= DATE_FORMAT(#{endDate}, '%Y-%m-%d %H:%i:%S')
|
|
|
|
|
]]>
|
|
|
|
|
</select>
|
|
|
|
|
<!--<select id="filterUdi" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"-->
|
|
|
|
|
<!--resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">-->
|
|
|
|
|
<!---- GROUP BY deviceRecordKey-->
|
|
|
|
|
<!--select p.* from productinfo p INNER JOIN-->
|
|
|
|
|
<!--(select deviceRecordKey ,max(versionNumber) versionNumber from productinfo-->
|
|
|
|
|
<!--<where>-->
|
|
|
|
|
|
|
|
|
|
<!--<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null">-->
|
|
|
|
|
<!--AND ylqxzcrbarmc= #{ylqxzcrbarmc}-->
|
|
|
|
|
<!--</if>-->
|
|
|
|
|
|
|
|
|
|
<!--<if test="ylqxzcrbarmc == '' and ylqxzcrbarmc == null and cpmctymc != '' and cpmctymc != null">-->
|
|
|
|
|
<!--AND cpmctymc LIKE concat(#{cpmctymc},'%')-->
|
|
|
|
|
<!--</if>-->
|
|
|
|
|
|
|
|
|
|
<!--<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null and cpmctymc != '' and cpmctymc != null">-->
|
|
|
|
|
<!--AND cpmctymc LIKE concat('%',#{cpmctymc},'%')-->
|
|
|
|
|
<!--</if>-->
|
|
|
|
|
<!--<if test="nameCode != '' and nameCode != null">-->
|
|
|
|
|
<!--AND nameCode LIKE concat(#{nameCode},'%')-->
|
|
|
|
|
<!--</if>-->
|
|
|
|
|
<!--<if test="uuid != '' and uuid != null">-->
|
|
|
|
|
<!--AND uuid = #{uuid}-->
|
|
|
|
|
<!--</if>-->
|
|
|
|
|
<!--<if test="ggxh != '' and ggxh != null">-->
|
|
|
|
|
<!--AND ggxh LIKE concat('%',#{ggxh},'%')-->
|
|
|
|
|
<!--</if>-->
|
|
|
|
|
<!--<if test="zczbhhzbapzbh != '' and zczbhhzbapzbh != null">-->
|
|
|
|
|
<!--AND zczbhhzbapzbh LIKE concat('%',#{zczbhhzbapzbh},'%')-->
|
|
|
|
|
<!--</if>-->
|
|
|
|
|
|
|
|
|
|
<!--<if test="deviceRecordKey != '' and deviceRecordKey != null">-->
|
|
|
|
|
<!--AND deviceRecordKey = #{deviceRecordKey}-->
|
|
|
|
|
<!--</if>-->
|
|
|
|
|
<!--<if test="updateTime!=null and updateTime!=''">-->
|
|
|
|
|
<!--<![CDATA[ and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S')>= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S') ]]>-->
|
|
|
|
|
<!--</if>-->
|
|
|
|
|
<!--</where>-->
|
|
|
|
|
<!--GROUP BY deviceRecordKey)-->
|
|
|
|
|
<!--a on p.deviceRecordKey = a.deviceRecordKey and p.versionNumber = a.versionNumber-->
|
|
|
|
|
|
|
|
|
|
<!--</select>-->
|
|
|
|
|
|
|
|
|
|
<select id="syncDlUdi" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
|
|
|
|
|
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
|
|
|
|
|
|
|
|
|
|
SELECT * FROM productinfo
|
|
|
|
|
SELECT *
|
|
|
|
|
FROM productinfo
|
|
|
|
|
<where>
|
|
|
|
|
<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null">
|
|
|
|
|
AND ylqxzcrbarmc LIKE concat(#{ylqxzcrbarmc}, '%')
|
|
|
|
@ -262,7 +315,9 @@
|
|
|
|
|
AND deviceRecordKey = #{deviceRecordKey}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="updateTime != null and updateTime != ''">
|
|
|
|
|
<![CDATA[ and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S')>= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S') ]]>
|
|
|
|
|
<![CDATA[
|
|
|
|
|
and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') >= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S')
|
|
|
|
|
]]>
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
limit #{page},#{limit}
|
|
|
|
@ -272,16 +327,14 @@
|
|
|
|
|
<insert id="insertProductInfo" keyProperty="id" parameterType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
|
|
|
|
|
REPLACE
|
|
|
|
|
INTO productinfo
|
|
|
|
|
(
|
|
|
|
|
nameCode,packRatio,packLevel,bhxjsl,
|
|
|
|
|
bhzxxsbzsl,zxxsbzbhsydysl,bhxjcpbm,bzcj,thirdProductNo,addType,deviceRecordKey,isUseDy,thirdProductName,
|
|
|
|
|
cpmctymc,cplb,flbm,ggxh,qxlb,tyshxydm,ylqxzcrbarmc,zczbhhzbapzbh,ylqxzcrbarywmc,uuid,sjcpbm,versionNumber
|
|
|
|
|
(nameCode, packRatio, packLevel, bhxjsl,
|
|
|
|
|
bhzxxsbzsl, zxxsbzbhsydysl, bhxjcpbm, bzcj, thirdProductNo, addType, deviceRecordKey, isUseDy,
|
|
|
|
|
thirdProductName,
|
|
|
|
|
cpmctymc, cplb, flbm, ggxh, qxlb, tyshxydm, ylqxzcrbarmc, zczbhhzbapzbh, ylqxzcrbarywmc, uuid, sjcpbm,
|
|
|
|
|
versionNumber
|
|
|
|
|
, diType, scbssfbhph, scbssfbhxlh, scbssfbhscrq, scbssfbhsxrq,
|
|
|
|
|
ybbm,spmc,cphhhbh,cpms,cpbsbmtxmc,isNewest,updateTime
|
|
|
|
|
)
|
|
|
|
|
values
|
|
|
|
|
(
|
|
|
|
|
#{nameCode},
|
|
|
|
|
ybbm, spmc, cphhhbh, cpms, cpbsbmtxmc, isNewest, updateTime, hchzsb, cplx)
|
|
|
|
|
values (#{nameCode},
|
|
|
|
|
#{packRatio},
|
|
|
|
|
#{packLevel},
|
|
|
|
|
#{bhxjsl},
|
|
|
|
@ -317,8 +370,7 @@
|
|
|
|
|
#{cpms},
|
|
|
|
|
#{cpbsbmtxmc},
|
|
|
|
|
#{isNewest},
|
|
|
|
|
#{updateTime}
|
|
|
|
|
)
|
|
|
|
|
#{updateTime}, #{hchzsb}, #{cplx})
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
<delete id="deleteById" parameterType="Map">
|
|
|
|
@ -328,7 +380,8 @@
|
|
|
|
|
</delete>
|
|
|
|
|
|
|
|
|
|
<delete id="deleteAll" parameterType="java.util.List">
|
|
|
|
|
DELETE FROM productinfo WHERE thirdProductNo in
|
|
|
|
|
DELETE
|
|
|
|
|
FROM productinfo WHERE thirdProductNo in
|
|
|
|
|
<foreach collection="ids" item="item" open="(" separator="," close=")">
|
|
|
|
|
#{item}
|
|
|
|
|
</foreach>
|
|
|
|
@ -337,33 +390,93 @@
|
|
|
|
|
<update id="updateProductInfo" parameterType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
|
|
|
|
|
UPDATE productinfo
|
|
|
|
|
<set>
|
|
|
|
|
<if test="nameCode != null">nameCode=#{nameCode},</if>
|
|
|
|
|
<if test="packRatio != null">packRatio=#{packRatio},</if>
|
|
|
|
|
<if test="packLevel != null">packLevel=#{packLevel},</if>
|
|
|
|
|
<if test="bhxjsl != null">bhxjsl=#{bhxjsl},</if>
|
|
|
|
|
<if test="bhzxxsbzsl != null">bhzxxsbzsl=#{bhzxxsbzsl},</if>
|
|
|
|
|
<if test="zxxsbzbhsydysl != null">zxxsbzbhsydysl=#{zxxsbzbhsydysl},</if>
|
|
|
|
|
<if test="bhxjcpbm != null">bhxjcpbm=#{bhxjcpbm},</if>
|
|
|
|
|
<if test="bzcj != null">bzcj=#{bzcj},</if>
|
|
|
|
|
<if test="thirdProductNo != null">thirdProductNo=#{thirdProductNo},</if>
|
|
|
|
|
<if test="addType != null">addType=#{addType},</if>
|
|
|
|
|
<if test="deviceRecordKey != null">deviceRecordKey=#{deviceRecordKey},</if>
|
|
|
|
|
<if test="isUseDy != null">isUseDy=#{isUseDy},</if>
|
|
|
|
|
<if test="thirdProductName != null">thirdProductName=#{thirdProductName},</if>
|
|
|
|
|
<if test="cpmctymc != null">cpmctymc=#{cpmctymc},</if>
|
|
|
|
|
<if test="cplb != null">cplb=#{cplb},</if>
|
|
|
|
|
<if test="flbm != null">flbm=#{flbm},</if>
|
|
|
|
|
<if test="ggxh != null">ggxh=#{ggxh},</if>
|
|
|
|
|
<if test="qxlb != null">qxlb=#{qxlb},</if>
|
|
|
|
|
<if test="tyshxydm != null">tyshxydm=#{tyshxydm},</if>
|
|
|
|
|
<if test="ylqxzcrbarmc != null">ylqxzcrbarmc=#{ylqxzcrbarmc},</if>
|
|
|
|
|
<if test="ylqxzcrbarywmc != null">ylqxzcrbarywmc=#{ylqxzcrbarywmc},</if>
|
|
|
|
|
<if test="uuid != null">uuid=#{uuid},</if>
|
|
|
|
|
<if test="sjcpbm != null">sjcpbm=#{sjcpbm},</if>
|
|
|
|
|
<if test="versionNumber != null">versionNumber=#{versionNumber},</if>
|
|
|
|
|
<if test="diType != null">diType=#{diType},</if>
|
|
|
|
|
<if test="isNewest != null">isNewest=#{isNewest},</if>
|
|
|
|
|
<if test="updateTime != null">updateTime=#{updateTime},</if>
|
|
|
|
|
<if test="nameCode != null">
|
|
|
|
|
nameCode=#{nameCode},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="packRatio != null">
|
|
|
|
|
packRatio=#{packRatio},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="packLevel != null">
|
|
|
|
|
packLevel=#{packLevel},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="bhxjsl != null">
|
|
|
|
|
bhxjsl=#{bhxjsl},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="bhzxxsbzsl != null">
|
|
|
|
|
bhzxxsbzsl=#{bhzxxsbzsl},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="zxxsbzbhsydysl != null">
|
|
|
|
|
zxxsbzbhsydysl=#{zxxsbzbhsydysl},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="bhxjcpbm != null">
|
|
|
|
|
bhxjcpbm=#{bhxjcpbm},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="bzcj != null">
|
|
|
|
|
bzcj=#{bzcj},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thirdProductNo != null">
|
|
|
|
|
thirdProductNo=#{thirdProductNo},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="addType != null">
|
|
|
|
|
addType=#{addType},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="deviceRecordKey != null">
|
|
|
|
|
deviceRecordKey=#{deviceRecordKey},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="isUseDy != null">
|
|
|
|
|
isUseDy=#{isUseDy},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thirdProductName != null">
|
|
|
|
|
thirdProductName=#{thirdProductName},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="cpmctymc != null">
|
|
|
|
|
cpmctymc=#{cpmctymc},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="cplb != null">
|
|
|
|
|
cplb=#{cplb},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="flbm != null">
|
|
|
|
|
flbm=#{flbm},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="ggxh != null">
|
|
|
|
|
ggxh=#{ggxh},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="qxlb != null">
|
|
|
|
|
qxlb=#{qxlb},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="tyshxydm != null">
|
|
|
|
|
tyshxydm=#{tyshxydm},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="ylqxzcrbarmc != null">
|
|
|
|
|
ylqxzcrbarmc=#{ylqxzcrbarmc},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="ylqxzcrbarywmc != null">
|
|
|
|
|
ylqxzcrbarywmc=#{ylqxzcrbarywmc},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="uuid != null">
|
|
|
|
|
uuid=#{uuid},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="sjcpbm != null">
|
|
|
|
|
sjcpbm=#{sjcpbm},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="versionNumber != null">
|
|
|
|
|
versionNumber=#{versionNumber},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="diType != null">
|
|
|
|
|
diType=#{diType},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="isNewest != null">
|
|
|
|
|
isNewest=#{isNewest},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="updateTime != null">
|
|
|
|
|
updateTime=#{updateTime},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="hchzsb != null">
|
|
|
|
|
hchzsb=#{hchzsb},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="cplx != null">
|
|
|
|
|
cplx=#{cplx},
|
|
|
|
|
</if>
|
|
|
|
|
</set>
|
|
|
|
|
WHERE id = #{id}
|
|
|
|
|
</update>
|
|
|
|
@ -371,17 +484,45 @@
|
|
|
|
|
<update id="updateProductByUuid" parameterType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
|
|
|
|
|
UPDATE productinfo
|
|
|
|
|
<set>
|
|
|
|
|
<if test="scbssfbhph != null">scbssfbhph=#{scbssfbhph},</if>
|
|
|
|
|
<if test="scbssfbhxlh != null">scbssfbhxlh=#{scbssfbhxlh},</if>
|
|
|
|
|
<if test="scbssfbhscrq != null">scbssfbhscrq=#{scbssfbhscrq},</if>
|
|
|
|
|
<if test="scbssfbhsxrq != null">scbssfbhsxrq=#{scbssfbhsxrq},</if>
|
|
|
|
|
<if test="ybbm != null">ybbm=#{ybbm},</if>
|
|
|
|
|
<if test="spmc != null">spmc=#{spmc},</if>
|
|
|
|
|
<if test="cphhhbh != null">cphhhbh=#{cphhhbh},</if>
|
|
|
|
|
<if test="cpms != null">cpms=#{cpms},</if>
|
|
|
|
|
<if test="cpbsbmtxmc != null">cpbsbmtxmc=#{cpbsbmtxmc},</if>
|
|
|
|
|
<if test="isNewest != null">isNewest=#{isNewest},</if>
|
|
|
|
|
<if test="updateTime != null">updateTime=#{updateTime},</if>
|
|
|
|
|
<if test="scbssfbhph != null">
|
|
|
|
|
scbssfbhph=#{scbssfbhph},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="scbssfbhxlh != null">
|
|
|
|
|
scbssfbhxlh=#{scbssfbhxlh},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="scbssfbhscrq != null">
|
|
|
|
|
scbssfbhscrq=#{scbssfbhscrq},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="scbssfbhsxrq != null">
|
|
|
|
|
scbssfbhsxrq=#{scbssfbhsxrq},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="ybbm != null">
|
|
|
|
|
ybbm=#{ybbm},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="spmc != null">
|
|
|
|
|
spmc=#{spmc},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="cphhhbh != null">
|
|
|
|
|
cphhhbh=#{cphhhbh},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="cpms != null">
|
|
|
|
|
cpms=#{cpms},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="cpbsbmtxmc != null">
|
|
|
|
|
cpbsbmtxmc=#{cpbsbmtxmc},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="isNewest != null">
|
|
|
|
|
isNewest=#{isNewest},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="updateTime != null">
|
|
|
|
|
updateTime=#{updateTime},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="hchzsb != null">
|
|
|
|
|
hchzsb=#{hchzsb},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="cplx != null">
|
|
|
|
|
cplx=#{cplx},
|
|
|
|
|
</if>
|
|
|
|
|
</set>
|
|
|
|
|
WHERE uuid = #{uuid}
|
|
|
|
|
</update>
|
|
|
|
@ -391,16 +532,33 @@
|
|
|
|
|
<select id="findAllUuids" parameterType="com.glxp.udidl.admin.req.ListPageRequest" resultType="java.lang.String">
|
|
|
|
|
SELECT uuid
|
|
|
|
|
from device
|
|
|
|
|
group by uuid limit #{page}, #{limit}
|
|
|
|
|
group by uuid
|
|
|
|
|
limit #{page}, #{limit}
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<select id="findAllTyshxyh" resultType="java.lang.String">
|
|
|
|
|
SELECT tyshxydm
|
|
|
|
|
from productinfo
|
|
|
|
|
group by tyshxydm
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<select id="selectByDeviceRecordKey" resultType="com.glxp.udidl.admin.dto.device.ProductDetailModel" parameterType="java.lang.String">
|
|
|
|
|
select nameCode,cpmctymc,packLevel,bzcj from productinfo where isNewest=1 and deviceRecordKey=#{key}
|
|
|
|
|
<select id="selectByDeviceRecordKey" resultType="com.glxp.udidl.admin.dto.device.ProductDetailModel"
|
|
|
|
|
parameterType="java.lang.String">
|
|
|
|
|
select nameCode, cpmctymc, packLevel, bzcj
|
|
|
|
|
from productinfo
|
|
|
|
|
where isNewest = 1
|
|
|
|
|
and deviceRecordKey = #{key}
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<update id="updateCplx" parameterType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
|
|
|
|
|
UPDATE productinfo
|
|
|
|
|
<set>
|
|
|
|
|
<if test="hchzsb != null">
|
|
|
|
|
hchzsb=#{hchzsb},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="cplx != null">
|
|
|
|
|
cplx=#{cplx},
|
|
|
|
|
</if>
|
|
|
|
|
</set>
|
|
|
|
|
WHERE deviceRecordKey = #{deviceRecordKey}
|
|
|
|
|
</update>
|
|
|
|
|
</mapper>
|
|
|
|
|