From 4afa387b237899d5f841a3070d04739772c22551 Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期五, 30 五月 2025 11:17:47 +0800
Subject: [PATCH] 规范二维码生成
---
pms-parent/pms-global/src/main/resources/mapper/PltMaterialMapper.xml | 34 +++++++++++++++++-----------------
1 files changed, 17 insertions(+), 17 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..9c48dc1 100644
--- a/pms-parent/pms-global/src/main/resources/mapper/PltMaterialMapper.xml
+++ b/pms-parent/pms-global/src/main/resources/mapper/PltMaterialMapper.xml
@@ -42,7 +42,7 @@
delete from plt_material
where id = #{id,jdbcType=INTEGER}
</delete>
- <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.dy.pmsGlobal.pojoPlt.PltMaterial" useGeneratedKeys="true">
+ <insert id="insert" parameterType="com.dy.pmsGlobal.pojoPlt.PltMaterial">
insert into plt_material
( id,pro_id,name
,type,length,factory
@@ -51,27 +51,27 @@
,#{type,jdbcType=VARCHAR},#{length,jdbcType=VARCHAR},#{factory,jdbcType=VARCHAR}
,#{deleted,jdbcType=TINYINT},#{remark,jdbcType=VARCHAR})
</insert>
- <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.dy.pmsGlobal.pojoPlt.PltMaterial" useGeneratedKeys="true">
+ <insert id="insertSelective" parameterType="com.dy.pmsGlobal.pojoPlt.PltMaterial">
insert into plt_material
<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