|
|
|
@ -27,22 +27,18 @@
|
|
|
|
|
<insert id="insertProductsDetailImport" keyProperty="id"
|
|
|
|
|
parameterType="com.glxp.api.admin.entity.thrsys.ThrProductsImportDetailEntity">
|
|
|
|
|
insert INTO thr_products_import_detail
|
|
|
|
|
(
|
|
|
|
|
code,name,measname,spec,registerNo,manufactory,
|
|
|
|
|
cplb,flbm,qxlb,ybbm,sptm,tyshxydm,zczbhhzbapzbh,ylqxzcrbarmc,ylqxzcrbarywmc,cpms,
|
|
|
|
|
thirdSysFk,updateTime ,genKeyFk ,supName,price )
|
|
|
|
|
values
|
|
|
|
|
(
|
|
|
|
|
#{code},
|
|
|
|
|
#{name},
|
|
|
|
|
#{measname},
|
|
|
|
|
#{spec},
|
|
|
|
|
#{registerNo},
|
|
|
|
|
#{manufactory},
|
|
|
|
|
#{cplb}, #{flbm}, #{qxlb}, #{ybbm},#{sptm},
|
|
|
|
|
#{tyshxydm}, #{zczbhhzbapzbh}, #{ylqxzcrbarmc}, #{ylqxzcrbarywmc},#{cpms}
|
|
|
|
|
#{thirdSysFk},#{updateTime},#{genKeyFk},#{supName},#{price}
|
|
|
|
|
)
|
|
|
|
|
(code, name, measname, spec, registerNo, manufactory,
|
|
|
|
|
cplb, flbm, qxlb, ybbm, sptm, tyshxydm, zczbhhzbapzbh, ylqxzcrbarmc, ylqxzcrbarywmc, cpms,
|
|
|
|
|
thirdSysFk, updateTime, genKeyFk, supName, price)
|
|
|
|
|
values (#{code},
|
|
|
|
|
#{name},
|
|
|
|
|
#{measname},
|
|
|
|
|
#{spec},
|
|
|
|
|
#{registerNo},
|
|
|
|
|
#{manufactory},
|
|
|
|
|
#{cplb}, #{flbm}, #{qxlb}, #{ybbm}, #{sptm},
|
|
|
|
|
#{tyshxydm}, #{zczbhhzbapzbh}, #{ylqxzcrbarmc}, #{ylqxzcrbarywmc}, #{cpms}
|
|
|
|
|
#{thirdSysFk}, #{updateTime}, #{genKeyFk}, #{supName}, #{price})
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
<insert id="insertProductsDetailImports" keyProperty="id" parameterType="java.util.List">
|
|
|
|
@ -63,17 +59,22 @@
|
|
|
|
|
#{item.manufactory},
|
|
|
|
|
#{item.cplb}, #{item.flbm}, #{item.qxlb}, #{item.ybbm},#{item.sptm},
|
|
|
|
|
#{item.tyshxydm}, #{item.zczbhhzbapzbh}, #{item.ylqxzcrbarmc}, #{item.ylqxzcrbarywmc},#{item.cpms},
|
|
|
|
|
#{item.thirdSysFk} ,#{item.updateTime},#{item.genKeyFk} ,#{item.supName} ,{item.price} )
|
|
|
|
|
#{item.thirdSysFk} ,#{item.updateTime},#{item.genKeyFk} ,#{item.supName} ,#{item.price} )
|
|
|
|
|
</foreach>
|
|
|
|
|
</insert>
|
|
|
|
|
<delete id="deleteById" parameterType="Map">
|
|
|
|
|
DELETE FROM thr_products_import_detail WHERE id = #{id}
|
|
|
|
|
DELETE
|
|
|
|
|
FROM thr_products_import_detail
|
|
|
|
|
WHERE id = #{id}
|
|
|
|
|
</delete>
|
|
|
|
|
<delete id="deleteByGenkey" parameterType="Map">
|
|
|
|
|
DELETE FROM thr_products_import_detail WHERE genKeyFk = #{genKey}
|
|
|
|
|
DELETE
|
|
|
|
|
FROM thr_products_import_detail
|
|
|
|
|
WHERE genKeyFk = #{genKey}
|
|
|
|
|
</delete>
|
|
|
|
|
|
|
|
|
|
<update id="updateProductsDetailImport" parameterType="com.glxp.api.admin.entity.thrsys.ThrProductsImportDetailEntity">
|
|
|
|
|
<update id="updateProductsDetailImport"
|
|
|
|
|
parameterType="com.glxp.api.admin.entity.thrsys.ThrProductsImportDetailEntity">
|
|
|
|
|
UPDATE thr_products_import_detail
|
|
|
|
|
<trim prefix="set" suffixOverrides=",">
|
|
|
|
|
<if test="code != null">code=#{code},</if>
|
|
|
|
|