From 0d05424b5df05f2e6ef478934cdaad9c71e5d91d Mon Sep 17 00:00:00 2001 From: Fancy <Fancy.fx@outlook.com> Date: 星期三, 18 九月 2024 09:34:56 +0800 Subject: [PATCH] product name and type --- pms-parent/pms-global/src/main/resources/mapper/PltProductionLineMapper.xml | 62 ++++++++++++++++--------------- 1 files changed, 32 insertions(+), 30 deletions(-) diff --git a/pms-parent/pms-global/src/main/resources/mapper/PltProductionLineMapper.xml b/pms-parent/pms-global/src/main/resources/mapper/PltProductionLineMapper.xml index 902afd6..3eeff2e 100644 --- a/pms-parent/pms-global/src/main/resources/mapper/PltProductionLineMapper.xml +++ b/pms-parent/pms-global/src/main/resources/mapper/PltProductionLineMapper.xml @@ -30,7 +30,9 @@ from plt_production_line where id = #{id,jdbcType=BIGINT} </select> - + <select id="selectNameByLineId" parameterType="java.lang.Long" resultType="String"> + select name from plt_production_line where id = #{id} + </select> <delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> delete from plt_production_line where id = #{id,jdbcType=BIGINT} @@ -50,46 +52,46 @@ insert into plt_production_line <trim prefix="(" suffix=")" suffixOverrides=","> <if test="id != null">id,</if> - <if test="name != null">name,</if> - <if test="type != null">type,</if> - <if test="factory != null">factory,</if> - <if test="director != null">director,</if> - <if test="dMobile != null">d_mobile,</if> - <if test="installTime != null">install_time,</if> + <if test="name != null and name !=''">name,</if> + <if test="type != null and type !=''">type,</if> + <if test="factory != null and factory !=''">factory,</if> + <if test="director != null and director !=''">director,</if> + <if test="dMobile != null and dMobile !=''">d_mobile,</if> + <if test="installTime != null and installTime !=''">install_time,</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=BIGINT},</if> - <if test="name != null">#{name,jdbcType=VARCHAR},</if> - <if test="type != null">#{type,jdbcType=VARCHAR},</if> - <if test="factory != null">#{factory,jdbcType=VARCHAR},</if> - <if test="director != null">#{director,jdbcType=VARCHAR},</if> - <if test="dMobile != null">#{dMobile,jdbcType=VARCHAR},</if> - <if test="installTime != null">#{installTime,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="factory != null and factory !=''">#{factory,jdbcType=VARCHAR},</if> + <if test="director != null and director !=''">#{director,jdbcType=VARCHAR},</if> + <if test="dMobile != null and dMobile !=''">#{dMobile,jdbcType=VARCHAR},</if> + <if test="installTime != null and installTime !=''">#{installTime,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.PltProductionLine"> update plt_production_line <set> - <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="factory != null"> + <if test="factory != null and factory !=''"> factory = #{factory,jdbcType=VARCHAR}, </if> - <if test="director != null"> + <if test="director != null and director !=''"> director = #{director,jdbcType=VARCHAR}, </if> - <if test="dMobile != null"> + <if test="dMobile != null and dMobile !=''"> d_mobile = #{dMobile,jdbcType=VARCHAR}, </if> - <if test="installTime != null"> + <if test="installTime != null and installTime !=''"> install_time = #{installTime,jdbcType=VARCHAR}, </if> <if test="disabled != null"> @@ -98,7 +100,7 @@ <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> @@ -123,16 +125,16 @@ <include refid="Base_Column_List" /> from plt_production_line where deleted != 1 <trim prefix="and" suffixOverrides="and"> - <if test="name != null"> + <if test="name != null and name !=''"> name like concat('%', #{name}, '%') and </if> - <if test="factory != null"> + <if test="factory != null and factory !=''"> factory like concat('%', #{factory}, '%') and </if> - <if test="director != null"> + <if test="director != null and director !=''"> director like concat('%', #{director}, '%') and </if> - <if test="dMobile != null"> + <if test="dMobile != null and dMobile !=''"> d_mobile = #{dMobile,jdbcType=VARCHAR} and </if> </trim> @@ -148,16 +150,16 @@ select count(1) from plt_production_line where deleted != 1 <trim prefix="and" suffixOverrides="and"> - <if test="name != null"> + <if test="name != null and name !=''"> name like concat('%', #{name}, '%') and </if> - <if test="factory != null"> + <if test="factory != null and factory !=''"> factory like concat('%', #{factory}, '%') and </if> - <if test="director != null"> + <if test="director != null and director !=''"> director like concat('%', #{director}, '%') and </if> - <if test="dMobile != null"> + <if test="dMobile != null and dMobile !=''"> d_mobile = #{dMobile,jdbcType=VARCHAR} and </if> </trim> -- Gitblit v1.8.0