feat: 多码融合

v3
chenhc 5 months ago
parent 9b4b532c27
commit f66e63eece

@ -5,17 +5,17 @@
<!--@mbg.generated-->
<!--@Table code_rel-->
<id column="id" jdbcType="INTEGER" property="id" />
<result column="diNameCode" jdbcType="VARCHAR" property="dinamecode" />
<result column="drugCode" jdbcType="VARCHAR" property="drugcode" />
<result column="diNameCode" jdbcType="VARCHAR" property="diNameCode" />
<result column="drugCode" jdbcType="VARCHAR" property="drugCode" />
<result column="ybbm" jdbcType="VARCHAR" property="ybbm" />
<result column="ycCode" jdbcType="VARCHAR" property="yccode" />
<result column="ycCode" jdbcType="VARCHAR" property="ycCode" />
<result column="sptm" jdbcType="VARCHAR" property="sptm" />
<result column="ypbwm" jdbcType="VARCHAR" property="ypbwm" />
<result column="tyshxyh" jdbcType="VARCHAR" property="tyshxyh" />
<result column="gjbm" jdbcType="VARCHAR" property="gjbm" />
<result column="status" jdbcType="VARCHAR" property="status" />
<result column="updateTime" jdbcType="TIMESTAMP" property="updatetime" />
<result column="createTime" jdbcType="TIMESTAMP" property="createtime" />
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
<result column="createTime" jdbcType="TIMESTAMP" property="createTime" />
<result column="fromType" jdbcType="TINYINT" property="fromtype" />
</resultMap>
<sql id="Base_Column_List">
@ -42,26 +42,26 @@
tyshxyh, gjbm, `status`,
updateTime, createTime, fromType
)
values (#{dinamecode,jdbcType=VARCHAR}, #{drugcode,jdbcType=VARCHAR}, #{ybbm,jdbcType=VARCHAR},
#{yccode,jdbcType=VARCHAR}, #{sptm,jdbcType=VARCHAR}, #{ypbwm,jdbcType=VARCHAR},
values (#{diNameCode,jdbcType=VARCHAR}, #{drugCode,jdbcType=VARCHAR}, #{ybbm,jdbcType=VARCHAR},
#{ycCode,jdbcType=VARCHAR}, #{sptm,jdbcType=VARCHAR}, #{ypbwm,jdbcType=VARCHAR},
#{tyshxyh,jdbcType=VARCHAR}, #{gjbm,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR},
#{updatetime,jdbcType=TIMESTAMP}, #{createtime,jdbcType=TIMESTAMP}, #{fromtype,jdbcType=TINYINT}
#{updateTime,jdbcType=TIMESTAMP}, #{createTime,jdbcType=TIMESTAMP}, #{fromtype,jdbcType=TINYINT}
)
</insert>
<insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.glxp.udidl.admin.entity.chs.CodeRel" useGeneratedKeys="true">
<!--@mbg.generated-->
insert into code_rel
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="dinamecode != null">
<if test="diNameCode != null">
diNameCode,
</if>
<if test="drugcode != null">
<if test="drugCode != null">
drugCode,
</if>
<if test="ybbm != null">
ybbm,
</if>
<if test="yccode != null">
<if test="ycCode != null">
ycCode,
</if>
<if test="sptm != null">
@ -79,10 +79,10 @@
<if test="status != null">
`status`,
</if>
<if test="updatetime != null">
<if test="updateTime != null">
updateTime,
</if>
<if test="createtime != null">
<if test="createTime != null">
createTime,
</if>
<if test="fromtype != null">
@ -90,17 +90,17 @@
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="dinamecode != null">
#{dinamecode,jdbcType=VARCHAR},
<if test="diNameCode != null">
#{diNameCode,jdbcType=VARCHAR},
</if>
<if test="drugcode != null">
#{drugcode,jdbcType=VARCHAR},
<if test="drugCode != null">
#{drugCode,jdbcType=VARCHAR},
</if>
<if test="ybbm != null">
#{ybbm,jdbcType=VARCHAR},
</if>
<if test="yccode != null">
#{yccode,jdbcType=VARCHAR},
<if test="ycCode != null">
#{ycCode,jdbcType=VARCHAR},
</if>
<if test="sptm != null">
#{sptm,jdbcType=VARCHAR},
@ -117,11 +117,11 @@
<if test="status != null">
#{status,jdbcType=VARCHAR},
</if>
<if test="updatetime != null">
#{updatetime,jdbcType=TIMESTAMP},
<if test="updateTime != null">
#{updateTime,jdbcType=TIMESTAMP},
</if>
<if test="createtime != null">
#{createtime,jdbcType=TIMESTAMP},
<if test="createTime != null">
#{createTime,jdbcType=TIMESTAMP},
</if>
<if test="fromtype != null">
#{fromtype,jdbcType=TINYINT},
@ -132,17 +132,17 @@
<!--@mbg.generated-->
update code_rel
<set>
<if test="dinamecode != null">
diNameCode = #{dinamecode,jdbcType=VARCHAR},
<if test="diNameCode != null">
diNameCode = #{diNameCode,jdbcType=VARCHAR},
</if>
<if test="drugcode != null">
drugCode = #{drugcode,jdbcType=VARCHAR},
<if test="drugCode != null">
drugCode = #{drugCode,jdbcType=VARCHAR},
</if>
<if test="ybbm != null">
ybbm = #{ybbm,jdbcType=VARCHAR},
</if>
<if test="yccode != null">
ycCode = #{yccode,jdbcType=VARCHAR},
<if test="ycCode != null">
ycCode = #{ycCode,jdbcType=VARCHAR},
</if>
<if test="sptm != null">
sptm = #{sptm,jdbcType=VARCHAR},
@ -159,11 +159,11 @@
<if test="status != null">
`status` = #{status,jdbcType=VARCHAR},
</if>
<if test="updatetime != null">
updateTime = #{updatetime,jdbcType=TIMESTAMP},
<if test="updateTime != null">
updateTime = #{updateTime,jdbcType=TIMESTAMP},
</if>
<if test="createtime != null">
createTime = #{createtime,jdbcType=TIMESTAMP},
<if test="createTime != null">
createTime = #{createTime,jdbcType=TIMESTAMP},
</if>
<if test="fromtype != null">
fromType = #{fromtype,jdbcType=TINYINT},
@ -174,17 +174,17 @@
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.chs.CodeRel">
<!--@mbg.generated-->
update code_rel
set diNameCode = #{dinamecode,jdbcType=VARCHAR},
drugCode = #{drugcode,jdbcType=VARCHAR},
set diNameCode = #{diNameCode,jdbcType=VARCHAR},
drugCode = #{drugCode,jdbcType=VARCHAR},
ybbm = #{ybbm,jdbcType=VARCHAR},
ycCode = #{yccode,jdbcType=VARCHAR},
ycCode = #{ycCode,jdbcType=VARCHAR},
sptm = #{sptm,jdbcType=VARCHAR},
ypbwm = #{ypbwm,jdbcType=VARCHAR},
tyshxyh = #{tyshxyh,jdbcType=VARCHAR},
gjbm = #{gjbm,jdbcType=VARCHAR},
`status` = #{status,jdbcType=VARCHAR},
updateTime = #{updatetime,jdbcType=TIMESTAMP},
createTime = #{createtime,jdbcType=TIMESTAMP},
updateTime = #{updateTime,jdbcType=TIMESTAMP},
createTime = #{createTime,jdbcType=TIMESTAMP},
fromType = #{fromtype,jdbcType=TINYINT}
where id = #{id,jdbcType=INTEGER}
</update>
@ -198,8 +198,8 @@
<if test="ybbm != null">
ybbm = #{ybbm,jdbcType=VARCHAR},
</if>
<if test="yccode != null">
ycCode = #{yccode,jdbcType=VARCHAR},
<if test="ycCode != null">
ycCode = #{ycCode,jdbcType=VARCHAR},
</if>
<if test="sptm != null">
sptm = #{sptm,jdbcType=VARCHAR},
@ -216,22 +216,22 @@
<if test="status != null">
`status` = #{status,jdbcType=VARCHAR},
</if>
<if test="updatetime != null">
updateTime = #{updatetime,jdbcType=TIMESTAMP},
<if test="updateTime != null">
updateTime = #{updateTime,jdbcType=TIMESTAMP},
</if>
<if test="createtime != null">
createTime = #{createtime,jdbcType=TIMESTAMP},
<if test="createTime != null">
createTime = #{createTime,jdbcType=TIMESTAMP},
</if>
<if test="fromtype != null">
fromType = #{fromtype,jdbcType=TINYINT},
</if>
</set>
<where>
<if test="dinamecode != null">
diNameCode = #{dinamecode,jdbcType=VARCHAR}
<if test="diNameCode != null">
diNameCode = #{diNameCode,jdbcType=VARCHAR}
</if>
<if test="dinamecode == null and drugcode != null">
drugcode = #{drugcode,jdbcType=VARCHAR}
<if test="diNameCode == null and drugCode != null">
drugCode = #{drugCode,jdbcType=VARCHAR}
</if>
</where>
</update>

Loading…
Cancel
Save