From abc305426c16e7ea9d21c12c41356c18ddb1adef Mon Sep 17 00:00:00 2001
From: liuxm <liuxm@fescotech.com>
Date: 星期二, 14 五月 2024 16:29:58 +0800
Subject: [PATCH] 产品管理功能,组合了工艺文件,用户手册,物料清单,技术参数

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

diff --git a/pms-parent/pms-global/src/main/resources/mapper/PltProParamsMapper.xml b/pms-parent/pms-global/src/main/resources/mapper/PltProParamsMapper.xml
index 967f35f..47743cb 100644
--- a/pms-parent/pms-global/src/main/resources/mapper/PltProParamsMapper.xml
+++ b/pms-parent/pms-global/src/main/resources/mapper/PltProParamsMapper.xml
@@ -8,13 +8,11 @@
     <result column="pro_id" jdbcType="BIGINT" property="proId" />
     <result column="param_name" jdbcType="VARCHAR" property="paramName" />
     <result column="param_value" jdbcType="VARCHAR" property="paramValue" />
-    <result column="install_manual" jdbcType="BIGINT" property="installManual" />
-    <result column="user_manual" jdbcType="BIGINT" property="userManual" />
     <result column="deleted" property="deleted" typeHandler="com.dy.common.mybatis.BooleanTypeHandler" />
   </resultMap>
   <sql id="Base_Column_List">
     <!--@mbg.generated-->
-    id, pro_id, param_name, param_value, install_manual, user_manual,deleted
+    id, pro_id, param_name, param_value, deleted
   </sql>
   <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
     <!--@mbg.generated-->
@@ -31,10 +29,10 @@
   <insert id="insert" parameterType="com.dy.pmsGlobal.pojoPlt.PltProductParams">
     <!--@mbg.generated-->
     insert into plt_product_params (id, pro_id, param_name,
-      param_value, install_manual, user_manual,deleted
+      param_value, deleted
       )
     values (#{id,jdbcType=BIGINT}, #{proId,jdbcType=BIGINT}, #{paramName,jdbcType=VARCHAR}, 
-      #{paramValue,jdbcType=VARCHAR}, #{installManual,jdbcType=BIGINT}, #{userManual,jdbcType=BIGINT},#{deleted,jdbcType=TINYINT}
+      #{paramValue,jdbcType=VARCHAR}, #{deleted,jdbcType=TINYINT}
       )
   </insert>
   <insert id="insertSelective" parameterType="com.dy.pmsGlobal.pojoPlt.PltProductParams">
@@ -53,12 +51,6 @@
       <if test="paramValue != null">
         param_value,
       </if>
-      <if test="installManual != null">
-        install_manual,
-      </if>
-      <if test="userManual != null">
-        user_manual,
-      </if>
       <if test="deleted != null">
         deleted
       </if>
@@ -75,12 +67,6 @@
       </if>
       <if test="paramValue != null">
         #{paramValue,jdbcType=VARCHAR},
-      </if>
-      <if test="installManual != null">
-        #{installManual,jdbcType=BIGINT},
-      </if>
-      <if test="userManual != null">
-        #{userManual,jdbcType=BIGINT},
       </if>
       <if test="deleted != null">
         #{deleted,jdbcType=TINYINT}
@@ -100,12 +86,6 @@
       <if test="paramValue != null">
         param_value = #{paramValue,jdbcType=VARCHAR},
       </if>
-      <if test="installManual != null">
-        install_manual = #{installManual,jdbcType=BIGINT},
-      </if>
-      <if test="userManual != null">
-        user_manual = #{userManual,jdbcType=BIGINT},
-      </if>
     </set>
     where id = #{id,jdbcType=BIGINT}
   </update>
@@ -114,9 +94,7 @@
     update plt_product_params
     set pro_id = #{proId,jdbcType=BIGINT},
       param_name = #{paramName,jdbcType=VARCHAR},
-      param_value = #{paramValue,jdbcType=VARCHAR},
-      install_manual = #{installManual,jdbcType=BIGINT},
-      user_manual = #{userManual,jdbcType=BIGINT}
+      param_value = #{paramValue,jdbcType=VARCHAR}
     where id = #{id,jdbcType=BIGINT}
   </update>
 

--
Gitblit v1.8.0