From c488d63b58458ea0dee56ffbb4c5b66b2141d4f1 Mon Sep 17 00:00:00 2001 From: liurunyu <lry9898@163.com> Date: 星期五, 30 五月 2025 09:59:30 +0800 Subject: [PATCH] 去除画蛇添足代码 --- pms-parent/pms-global/src/main/resources/mapper/PrProductionProcessMapper.xml | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/pms-parent/pms-global/src/main/resources/mapper/PrProductionProcessMapper.xml b/pms-parent/pms-global/src/main/resources/mapper/PrProductionProcessMapper.xml index 78e5bed..fe70390 100644 --- a/pms-parent/pms-global/src/main/resources/mapper/PrProductionProcessMapper.xml +++ b/pms-parent/pms-global/src/main/resources/mapper/PrProductionProcessMapper.xml @@ -15,6 +15,8 @@ <result property="remark" column="remark" jdbcType="VARCHAR"/> <association property="proName" column="pro_id" javaType="java.lang.Long" select="com.dy.pmsGlobal.daoPlt.PltProductMapper.selectProNameById" fetchType="eager" /> + <association property="proType" column="pro_id" javaType="java.lang.Long" + select="com.dy.pmsGlobal.daoPlt.PltProductMapper.selectProTypeById" fetchType="eager" /> <association property="creatorName" column="creator" javaType="java.lang.Long" select="com.dy.pmsGlobal.daoBa.BaUserMapper.selectNameByUserId" fetchType="eager" /> <association property="isQuote" column="id" javaType="java.lang.Boolean" fetchType="eager" @@ -73,14 +75,14 @@ where id = #{id,jdbcType=BIGINT} </delete> - <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.dy.pmsGlobal.pojoPr.PrProductionProcess" useGeneratedKeys="true"> + <insert id="insertSelective" parameterType="com.dy.pmsGlobal.pojoPr.PrProductionProcess"> insert into pr_production_process <trim prefix="(" suffix=")" suffixOverrides=","> <if test="id != null">id,</if> <if test="proId != null">pro_id,</if> <if test="name != null and name !=''">name,</if> <if test="creator != null and creator !=''">creator,</if> - <if test="dt != null and dt !=''">dt,</if> + <if test="dt != null">dt,</if> <if test="disabled != null">disabled,</if> <if test="deleted != null">deleted,</if> <if test="remark != null and remark !=''">remark,</if> @@ -90,7 +92,7 @@ <if test="proId != null">#{proId,jdbcType=BIGINT},</if> <if test="name != null and name !=''">#{name,jdbcType=VARCHAR},</if> <if test="creator != null and creator !=''">#{creator,jdbcType=VARCHAR},</if> - <if test="dt != null and dt !=''">#{dt,jdbcType=TIMESTAMP},</if> + <if test="dt != null">#{dt,jdbcType=TIMESTAMP},</if> <if test="disabled != null">#{disabled,jdbcType=TINYINT},</if> <if test="deleted != null">#{deleted,jdbcType=TINYINT},</if> <if test="remark != null and remark !=''">#{remark,jdbcType=VARCHAR},</if> @@ -108,7 +110,7 @@ <if test="creator != null and creator !=''"> creator = #{creator,jdbcType=VARCHAR}, </if> - <if test="dt != null and dt !=''"> + <if test="dt != null"> dt = #{dt,jdbcType=TIMESTAMP}, </if> <if test="disabled != null"> -- Gitblit v1.8.0