|
|
|
@ -36,9 +36,11 @@
|
|
|
|
|
basic_products.bhxjcpbm,basic_products.bzcj,basic_products.addType,basic_products.deviceRecordKey,
|
|
|
|
|
basic_products.cpmctymc,basic_products.cplb,basic_products.flbm,basic_products.ggxh,basic_products.qxlb,
|
|
|
|
|
basic_products.tyshxydm,basic_products.ylqxzcrbarmc,basic_products.zczbhhzbapzbh,basic_products.ylqxzcrbarywmc,
|
|
|
|
|
basic_products.sydycpbs,basic_products.uuid,basic_products.sjcpbm,basic_products.versionNumber,basic_products.diType
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
basic_products.sydycpbs,basic_products.uuid,basic_products.sjcpbm,basic_products.versionNumber,basic_products.diType,
|
|
|
|
|
basic_products.scbssfbhph,
|
|
|
|
|
basic_products.scbssfbhxlh,
|
|
|
|
|
basic_products.scbssfbhscrq,
|
|
|
|
|
basic_products.scbssfbhsxrq
|
|
|
|
|
FROM (company_product_relevance
|
|
|
|
|
inner JOIN basic_udirel
|
|
|
|
|
ON company_product_relevance.udiRlIdFk = basic_udirel.id)
|
|
|
|
@ -46,7 +48,6 @@
|
|
|
|
|
ON basic_udirel.uuid = basic_products.uuid
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<where>
|
|
|
|
|
<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null">
|
|
|
|
|
AND ylqxzcrbarmc LIKE concat(#{ylqxzcrbarmc},'%')
|
|
|
|
@ -58,16 +59,16 @@
|
|
|
|
|
AND nameCode LIKE concat(#{nameCode},'%')
|
|
|
|
|
</if>
|
|
|
|
|
<if test="unionCode != '' and unionCode != null">
|
|
|
|
|
or nameCode LIKE concat('%',#{unionCode},'%')
|
|
|
|
|
or basic_udirel.ybbm LIKE concat('%',#{unionCode},'%')
|
|
|
|
|
or basic_udirel.sptm LIKE concat('%',#{unionCode},'%')
|
|
|
|
|
or nameCode LIKE concat('%',#{unionCode},'%')
|
|
|
|
|
or basic_udirel.ybbm LIKE concat('%',#{unionCode},'%')
|
|
|
|
|
or basic_udirel.sptm LIKE concat('%',#{unionCode},'%')
|
|
|
|
|
</if>
|
|
|
|
|
<if test="thrPiId != '' and thrPiId != null">
|
|
|
|
|
or thirdId LIKE concat('%',#{thrPiId},'%')
|
|
|
|
|
or thirdId1 LIKE concat('%',#{thrPiId},'%')
|
|
|
|
|
or thirdId2 LIKE concat('%',#{thrPiId},'%')
|
|
|
|
|
or thirdId3 LIKE concat('%',#{thrPiId},'%')
|
|
|
|
|
or thirdId4 LIKE concat('%',#{thrPiId},'%')
|
|
|
|
|
or thirdId LIKE concat('%',#{thrPiId},'%')
|
|
|
|
|
or thirdId1 LIKE concat('%',#{thrPiId},'%')
|
|
|
|
|
or thirdId2 LIKE concat('%',#{thrPiId},'%')
|
|
|
|
|
or thirdId3 LIKE concat('%',#{thrPiId},'%')
|
|
|
|
|
or thirdId4 LIKE concat('%',#{thrPiId},'%')
|
|
|
|
|
</if>
|
|
|
|
|
<if test="uuid != '' and uuid != null">
|
|
|
|
|
AND uuid = #{uuid}
|
|
|
|
@ -85,7 +86,7 @@
|
|
|
|
|
</where>
|
|
|
|
|
ORDER BY updateTime DESC
|
|
|
|
|
</select>
|
|
|
|
|
<!--// AND company_product_relevance.auditStatus = 1-->
|
|
|
|
|
<!--// AND company_product_relevance.auditStatus = 1-->
|
|
|
|
|
<select id="findById" parameterType="java.lang.String"
|
|
|
|
|
resultType="com.glxp.sale.admin.entity.basic.UdiInfoEntity">
|
|
|
|
|
SELECT *
|
|
|
|
@ -95,54 +96,66 @@
|
|
|
|
|
|
|
|
|
|
<select id="findByUuid" parameterType="java.lang.String"
|
|
|
|
|
resultType="com.glxp.sale.admin.entity.basic.UdiInfoEntity">
|
|
|
|
|
SELECT * FROM basic_products WHERE (
|
|
|
|
|
uuid = #{uuid} ) limit 1
|
|
|
|
|
SELECT *
|
|
|
|
|
FROM basic_products
|
|
|
|
|
WHERE (
|
|
|
|
|
uuid = #{uuid}) limit 1
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<select id="findByUuids" parameterType="java.lang.String"
|
|
|
|
|
resultType="com.glxp.sale.admin.entity.basic.UdiInfoEntity">
|
|
|
|
|
SELECT * FROM basic_products WHERE (
|
|
|
|
|
uuid = #{uuid} )
|
|
|
|
|
SELECT *
|
|
|
|
|
FROM basic_products
|
|
|
|
|
WHERE (
|
|
|
|
|
uuid = #{uuid})
|
|
|
|
|
</select>
|
|
|
|
|
<select id="findByNameCode" parameterType="java.lang.String"
|
|
|
|
|
resultType="com.glxp.sale.admin.entity.basic.UdiInfoEntity">
|
|
|
|
|
SELECT * FROM basic_products WHERE (
|
|
|
|
|
nameCode = #{nameCode} ) limit 1
|
|
|
|
|
SELECT *
|
|
|
|
|
FROM basic_products
|
|
|
|
|
WHERE (
|
|
|
|
|
nameCode = #{nameCode}) limit 1
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<insert id="insertUdiInfo" keyProperty="id" parameterType="com.glxp.sale.admin.entity.basic.UdiInfoEntity">
|
|
|
|
|
replace INTO basic_products
|
|
|
|
|
replace
|
|
|
|
|
INTO basic_products
|
|
|
|
|
(
|
|
|
|
|
nameCode,packRatio,packLevel,bhxjsl,
|
|
|
|
|
bhzxxsbzsl,zxxsbzbhsydysl,bhxjcpbm,bzcj,addType,deviceRecordKey,
|
|
|
|
|
cpmctymc,cplb,flbm,ggxh,qxlb,tyshxydm,ylqxzcrbarmc,zczbhhzbapzbh,ylqxzcrbarywmc,uuid,sjcpbm,versionNumber
|
|
|
|
|
,diType,productType)
|
|
|
|
|
,diType,productType,scbssfbhph,scbssfbhxlh,scbssfbhscrq,scbssfbhsxrq)
|
|
|
|
|
values
|
|
|
|
|
(
|
|
|
|
|
#{nameCode},
|
|
|
|
|
#{packRatio},
|
|
|
|
|
#{packLevel},
|
|
|
|
|
#{bhxjsl},
|
|
|
|
|
#{bhzxxsbzsl},
|
|
|
|
|
#{zxxsbzbhsydysl},
|
|
|
|
|
#{bhxjcpbm},
|
|
|
|
|
#{bzcj},
|
|
|
|
|
#{addType},
|
|
|
|
|
#{deviceRecordKey},
|
|
|
|
|
#{cpmctymc},
|
|
|
|
|
#{cplb},
|
|
|
|
|
#{flbm},
|
|
|
|
|
#{ggxh},
|
|
|
|
|
#{qxlb},
|
|
|
|
|
#{tyshxydm},
|
|
|
|
|
#{ylqxzcrbarmc},
|
|
|
|
|
#{zczbhhzbapzbh},
|
|
|
|
|
#{ylqxzcrbarywmc},
|
|
|
|
|
#{uuid},
|
|
|
|
|
#{sjcpbm},
|
|
|
|
|
#{versionNumber},
|
|
|
|
|
#{diType},#{productType}
|
|
|
|
|
)
|
|
|
|
|
#{nameCode},
|
|
|
|
|
#{packRatio},
|
|
|
|
|
#{packLevel},
|
|
|
|
|
#{bhxjsl},
|
|
|
|
|
#{bhzxxsbzsl},
|
|
|
|
|
#{zxxsbzbhsydysl},
|
|
|
|
|
#{bhxjcpbm},
|
|
|
|
|
#{bzcj},
|
|
|
|
|
#{addType},
|
|
|
|
|
#{deviceRecordKey},
|
|
|
|
|
#{cpmctymc},
|
|
|
|
|
#{cplb},
|
|
|
|
|
#{flbm},
|
|
|
|
|
#{ggxh},
|
|
|
|
|
#{qxlb},
|
|
|
|
|
#{tyshxydm},
|
|
|
|
|
#{ylqxzcrbarmc},
|
|
|
|
|
#{zczbhhzbapzbh},
|
|
|
|
|
#{ylqxzcrbarywmc},
|
|
|
|
|
#{uuid},
|
|
|
|
|
#{sjcpbm},
|
|
|
|
|
#{versionNumber},
|
|
|
|
|
#{diType},
|
|
|
|
|
#{productType},
|
|
|
|
|
#{scbssfbhph},
|
|
|
|
|
#{scbssfbhxlh},
|
|
|
|
|
#{scbssfbhscrq},
|
|
|
|
|
#{scbssfbhsxrq}
|
|
|
|
|
)
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
<insert id="insertUdiInfos" keyProperty="id" parameterType="java.util.List">
|
|
|
|
@ -151,7 +164,7 @@
|
|
|
|
|
nameCode,packRatio,packLevel,bhxjsl,
|
|
|
|
|
bhzxxsbzsl,zxxsbzbhsydysl,bhxjcpbm,bzcj,addType,deviceRecordKey,
|
|
|
|
|
cpmctymc,cplb,flbm,ggxh,qxlb,tyshxydm,ylqxzcrbarmc,zczbhhzbapzbh,ylqxzcrbarywmc,uuid,sjcpbm,versionNumber
|
|
|
|
|
,diType,productType
|
|
|
|
|
,diType,productType,scbssfbhph,scbssfbhxlh,scbssfbhscrq,scbssfbhsxrq
|
|
|
|
|
)
|
|
|
|
|
values
|
|
|
|
|
|
|
|
|
@ -180,17 +193,24 @@
|
|
|
|
|
#{item.uuid},
|
|
|
|
|
#{item.sjcpbm},
|
|
|
|
|
#{item.versionNumber},
|
|
|
|
|
#{item.diType},#{item.productType}
|
|
|
|
|
#{item.diType},#{item.productType}, #{item.scbssfbhph},
|
|
|
|
|
#{item.scbssfbhxlh},
|
|
|
|
|
#{item.scbssfbhscrq},
|
|
|
|
|
#{item.scbssfbhsxrq}
|
|
|
|
|
)
|
|
|
|
|
</foreach>
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
<delete id="deleteById" parameterType="Map">
|
|
|
|
|
DELETE FROM basic_products WHERE id = #{id}
|
|
|
|
|
DELETE
|
|
|
|
|
FROM basic_products
|
|
|
|
|
WHERE id = #{id}
|
|
|
|
|
</delete>
|
|
|
|
|
|
|
|
|
|
<delete id="deleteByUuid" parameterType="Map">
|
|
|
|
|
DELETE FROM basic_products WHERE uuid = #{uuid}
|
|
|
|
|
DELETE
|
|
|
|
|
FROM basic_products
|
|
|
|
|
WHERE uuid = #{uuid}
|
|
|
|
|
</delete>
|
|
|
|
|
|
|
|
|
|
<update id="updateUdiInfo" parameterType="com.glxp.sale.admin.entity.basic.UdiInfoEntity">
|
|
|
|
@ -222,7 +242,10 @@
|
|
|
|
|
<if test="measname != null">measname=#{measname},</if>
|
|
|
|
|
<if test="diType != null">diType=#{diType},</if>
|
|
|
|
|
<if test="productType != null">productType=#{productType},</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>
|
|
|
|
|
</trim>
|
|
|
|
|
WHERE nameCode = #{nameCode}
|
|
|
|
|
</update>
|
|
|
|
@ -240,7 +263,7 @@
|
|
|
|
|
(id, nameCode, packRatio, packLevel, bhxjsl, bhzxxsbzsl, zxxsbzbhsydysl, bhxjcpbm, bzcj, addType,
|
|
|
|
|
deviceRecordKey, cpmctymc, cplb, flbm, ggxh, qxlb, tyshxydm, ylqxzcrbarmc, zczbhhzbapzbh,
|
|
|
|
|
ylqxzcrbarywmc, sydycpbs, uuid, sjcpbm, versionNumber, diType, ybbm, sptm, manufactory, measname,
|
|
|
|
|
productType) values
|
|
|
|
|
productType,scbssfbhph,scbssfbhxlh,scbssfbhscrq,scbssfbhsxrq) values
|
|
|
|
|
<foreach collection="udiInfoEntities" item="item" index="index" separator=",">
|
|
|
|
|
(#{item.id},
|
|
|
|
|
#{item.nameCode},
|
|
|
|
@ -271,7 +294,10 @@
|
|
|
|
|
#{item.sptm},
|
|
|
|
|
#{item.manufactory},
|
|
|
|
|
#{item.measname},
|
|
|
|
|
#{item.productType})
|
|
|
|
|
#{item.productType}, #{item.scbssfbhph},
|
|
|
|
|
#{item.scbssfbhxlh},
|
|
|
|
|
#{item.scbssfbhscrq},
|
|
|
|
|
#{item.scbssfbhsxrq})
|
|
|
|
|
</foreach>
|
|
|
|
|
</insert>
|
|
|
|
|
</mapper>
|