You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

106 lines
4.4 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!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.collect.ThirdAliDrugMapper">
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.collect.ThirdAliDrug">
<!--@mbg.generated-->
<!--@Table third_ali_drug-->
<id column="id" jdbcType="INTEGER" property="id"/>
<result column="type" jdbcType="VARCHAR" property="type"/>
<result column="manufacturer" jdbcType="VARCHAR" property="manufacturer"/>
<result column="cpmctymc" jdbcType="VARCHAR" property="cpmctymc"/>
<result column="form" jdbcType="VARCHAR" property="form"/>
<result column="formSpec" jdbcType="VARCHAR" property="formSpec"/>
<result column="bzgg" jdbcType="VARCHAR" property="bzgg"/>
<result column="spmc" jdbcType="VARCHAR" property="spmc"/>
<result column="nameCode" jdbcType="VARCHAR" property="nameCode"/>
<result column="packRatio" jdbcType="VARCHAR" property="packRatio"/>
<result column="packLevel" jdbcType="VARCHAR" property="packLevel"/>
<result column="erpId" jdbcType="VARCHAR" property="packLevel"/>
<result column="createTime" jdbcType="TIMESTAMP" property="createTime"/>
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime"/>
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id,
`type`,
manufacturer,
cpmctymc,
form,
formSpec,
bzgg,
spmc,
nameCode,
packRatio,
packLevel,
createTime,
erpId,
updateTime
</sql>
<select id="selectDrugsByNameCodes" resultType="int">
SELECT count(1)
FROM third_ali_drug
WHERE nameCode = #{nameCode}
</select>
<!-- 自定义saveOrUpdateBatch方法 -->
<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,
packLevel, createTime, updateTime, erpId, approvalNum,prepnUnit,prepnUnitName,physicDetailType,physicDetailTypeDesc,physicTypeDesc,packUnitName)
VALUES
<foreach collection="list" item="item" separator="," index="index">
(#{item.type}, #{item.manufacturer}, #{item.cpmctymc}, #{item.form}, #{item.formSpec}, #{item.bzgg},
#{item.spmc}, #{item.nameCode},
#{item.packRatio}, #{item.packLevel}, #{item.createTime}, #{item.updateTime}, #{item.erpId},
#{item.approvalNum},
#{item.prepnUnit},
#{item.prepnUnitName},
#{item.physicDetailType},
#{item.physicDetailTypeDesc},
#{item.physicTypeDesc},
#{item.packUnitName})
</foreach>
</insert>
<select id="filterList" parameterType="com.glxp.udidl.admin.req.collect.ThirdAliDrugRequest"
resultType="com.glxp.udidl.admin.entity.collect.ThirdAliDrug">
select id,
`type`,
manufacturer,
cpmctymc,
form,
formSpec,
bzgg,
spmc,
nameCode,
packRatio,
packLevel,
createTime,
erpId,
updateTime,
approvalNum,prepnUnit,prepnUnitName,physicDetailType,physicDetailTypeDesc,physicTypeDesc,packUnitName
from third_ali_drug
<where>
<if test="cpmctymc != '' and cpmctymc != null">
AND cpmctymc LIKE concat('%', #{cpmctymc}, '%')
</if>
<if test="nameCode != '' and nameCode != null">
AND nameCode LIKE concat('%', #{nameCode}, '%')
</if>
<if test="approvalNum != '' and approvalNum != null">
AND approvalNum = #{approvalNum}
</if>
<if test="manufacturer != '' and manufacturer != null">
AND manufacturer = #{manufacturer}
</if>
<if test="formSpec != '' and formSpec != null">
AND formSpec LIKE concat('%', #{formSpec}, '%')
</if>
<if test="bzgg != '' and bzgg != null">
AND bzgg LIKE concat('%', #{bzgg}, '%')
</if>
</where>
</select>
</mapper>