|
|
@ -46,13 +46,19 @@
|
|
|
|
<!-- 自定义saveOrUpdateBatch方法 -->
|
|
|
|
<!-- 自定义saveOrUpdateBatch方法 -->
|
|
|
|
<insert id="saveOrUpdateBatch" parameterType="com.glxp.udidl.admin.entity.collect.ThirdAliDrug">
|
|
|
|
<insert id="saveOrUpdateBatch" parameterType="com.glxp.udidl.admin.entity.collect.ThirdAliDrug">
|
|
|
|
replace INTO third_ali_drug (`type`, manufacturer, cpmctymc, form, formSpec, bzgg, spmc, nameCode, packRatio,
|
|
|
|
replace INTO third_ali_drug (`type`, manufacturer, cpmctymc, form, formSpec, bzgg, spmc, nameCode, packRatio,
|
|
|
|
packLevel, createTime, updateTime, erpId, approvalNum)
|
|
|
|
packLevel, createTime, updateTime, erpId, approvalNum,prepnUnit,prepnUnitName,physicDetailType,physicDetailTypeDesc,physicTypeDesc,packUnitName)
|
|
|
|
VALUES
|
|
|
|
VALUES
|
|
|
|
<foreach collection="list" item="item" separator="," index="index">
|
|
|
|
<foreach collection="list" item="item" separator="," index="index">
|
|
|
|
(#{item.type}, #{item.manufacturer}, #{item.cpmctymc}, #{item.form}, #{item.formSpec}, #{item.bzgg},
|
|
|
|
(#{item.type}, #{item.manufacturer}, #{item.cpmctymc}, #{item.form}, #{item.formSpec}, #{item.bzgg},
|
|
|
|
#{item.spmc}, #{item.nameCode},
|
|
|
|
#{item.spmc}, #{item.nameCode},
|
|
|
|
#{item.packRatio}, #{item.packLevel}, #{item.createTime}, #{item.updateTime}, #{item.erpId},
|
|
|
|
#{item.packRatio}, #{item.packLevel}, #{item.createTime}, #{item.updateTime}, #{item.erpId},
|
|
|
|
#{item.approvalNum})
|
|
|
|
#{item.approvalNum},
|
|
|
|
|
|
|
|
#{item.prepnUnit},
|
|
|
|
|
|
|
|
#{item.prepnUnitName},
|
|
|
|
|
|
|
|
#{item.physicDetailType},
|
|
|
|
|
|
|
|
#{item.physicDetailTypeDesc},
|
|
|
|
|
|
|
|
#{item.physicTypeDesc},
|
|
|
|
|
|
|
|
#{item.packUnitName})
|
|
|
|
</foreach>
|
|
|
|
</foreach>
|
|
|
|
</insert>
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
|
@ -73,7 +79,7 @@
|
|
|
|
createTime,
|
|
|
|
createTime,
|
|
|
|
erpId,
|
|
|
|
erpId,
|
|
|
|
updateTime,
|
|
|
|
updateTime,
|
|
|
|
approvalNum
|
|
|
|
approvalNum,prepnUnit,prepnUnitName,physicDetailType,physicDetailTypeDesc,physicTypeDesc,packUnitName
|
|
|
|
from third_ali_drug
|
|
|
|
from third_ali_drug
|
|
|
|
<where>
|
|
|
|
<where>
|
|
|
|
<if test="cpmctymc != '' and cpmctymc != null">
|
|
|
|
<if test="cpmctymc != '' and cpmctymc != null">
|
|
|
|