From cf510b3a38f20d5dba5b7a0b71f097753b3ca409 Mon Sep 17 00:00:00 2001
From: Fancy <Fancy.fx@outlook.com>
Date: 星期三, 25 十二月 2024 17:27:48 +0800
Subject: [PATCH] add mp table

---
 pms-parent/pms-global/src/main/resources/mapper/PltMaterialMapper.xml |   30 +++++++++++++++---------------
 1 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/pms-parent/pms-global/src/main/resources/mapper/PltMaterialMapper.xml b/pms-parent/pms-global/src/main/resources/mapper/PltMaterialMapper.xml
index eae3f27..17ae9b9 100644
--- a/pms-parent/pms-global/src/main/resources/mapper/PltMaterialMapper.xml
+++ b/pms-parent/pms-global/src/main/resources/mapper/PltMaterialMapper.xml
@@ -56,22 +56,22 @@
         <trim prefix="(" suffix=")" suffixOverrides=",">
                 <if test="id != null">id,</if>
                 <if test="proId != null">pro_id,</if>
-                <if test="name != null">name,</if>
-                <if test="type != null">type,</if>
-                <if test="length != null">length,</if>
-                <if test="factory != null">factory,</if>
+                <if test="name != null and name !=''">name,</if>
+                <if test="type != null and type !=''">type,</if>
+                <if test="length!= null and length !=''">length,</if>
+                <if test="factory != null and factory !=''">factory,</if>
                 <if test="deleted != null">deleted,</if>
-                <if test="remark != null">remark,</if>
+                <if test="remark != null and remark !=''">remark,</if>
         </trim>
         <trim prefix="values (" suffix=")" suffixOverrides=",">
                 <if test="id != null">#{id,jdbcType=INTEGER},</if>
                 <if test="proId != null">#{proId,jdbcType=BIGINT},</if>
-                <if test="name != null">#{name,jdbcType=VARCHAR},</if>
-                <if test="type != null">#{type,jdbcType=VARCHAR},</if>
-                <if test="length != null">#{length,jdbcType=VARCHAR},</if>
-                <if test="factory != null">#{factory,jdbcType=VARCHAR},</if>
+                <if test="name != null and name !=''">#{name,jdbcType=VARCHAR},</if>
+                <if test="type != null and type !=''">#{type,jdbcType=VARCHAR},</if>
+                <if test="length!= null and length !=''">#{length,jdbcType=VARCHAR},</if>
+                <if test="factory != null and factory !=''">#{factory,jdbcType=VARCHAR},</if>
                 <if test="deleted != null">#{deleted,jdbcType=TINYINT},</if>
-                <if test="remark != null">#{remark,jdbcType=VARCHAR},</if>
+                <if test="remark != null and remark !=''">#{remark,jdbcType=VARCHAR},</if>
         </trim>
     </insert>
     <update id="updateByPrimaryKeySelective" parameterType="com.dy.pmsGlobal.pojoPlt.PltMaterial">
@@ -80,22 +80,22 @@
                 <if test="proId != null">
                     pro_id = #{proId,jdbcType=BIGINT},
                 </if>
-                <if test="name != null">
+                <if test="name != null and name !=''">
                     name = #{name,jdbcType=VARCHAR},
                 </if>
-                <if test="type != null">
+                <if test="type != null and type !=''">
                     type = #{type,jdbcType=VARCHAR},
                 </if>
-                <if test="length != null">
+                <if test="length!= null and length !=''">
                     length = #{length,jdbcType=VARCHAR},
                 </if>
-                <if test="factory != null">
+                <if test="factory != null and factory !=''">
                     factory = #{factory,jdbcType=VARCHAR},
                 </if>
                 <if test="deleted != null">
                     deleted = #{deleted,jdbcType=TINYINT},
                 </if>
-                <if test="remark != null">
+                <if test="remark != null and remark !=''">
                     remark = #{remark,jdbcType=VARCHAR},
                 </if>
         </set>

--
Gitblit v1.8.0