From 0c1c30026c906f8055b5f0315785175726f9202c Mon Sep 17 00:00:00 2001
From: 刘小明 <liuxm_a@163.com>
Date: 星期四, 20 六月 2024 13:38:42 +0800
Subject: [PATCH] 模块名称修改

---
 pms-parent/pms-global/src/main/resources/mapper/StaDeviceLastMapper.xml |   46 +++++++++++++++++++++++-----------------------
 1 files changed, 23 insertions(+), 23 deletions(-)

diff --git a/pms-parent/pms-global/src/main/resources/mapper/StaDeviceLastMapper.xml b/pms-parent/pms-global/src/main/resources/mapper/StaDeviceLastMapper.xml
index e7b002b..50da7e0 100644
--- a/pms-parent/pms-global/src/main/resources/mapper/StaDeviceLastMapper.xml
+++ b/pms-parent/pms-global/src/main/resources/mapper/StaDeviceLastMapper.xml
@@ -7,10 +7,10 @@
     <resultMap id="BaseResultMap" type="com.dy.pmsGlobal.pojoSta.StaDeviceLast">
             <id property="id" column="id" jdbcType="BIGINT"/>
             <result property="equipNo" column="equip_no" jdbcType="VARCHAR"/>
-            <result property="planId" column="plan_id" jdbcType="VARCHAR"/>
-            <result property="stationId" column="station_id" jdbcType="VARCHAR"/>
-            <result property="currNode" column="curr_node" jdbcType="VARCHAR"/>
-            <result property="nextNode" column="next_node" jdbcType="VARCHAR"/>
+            <result property="planId" column="plan_id" jdbcType="BIGINT"/>
+            <result property="stationId" column="station_id" jdbcType="BIGINT"/>
+            <result property="currNode" column="curr_node" jdbcType="BIGINT"/>
+            <result property="nextNode" column="next_node" jdbcType="BIGINT"/>
             <result property="status" column="status" jdbcType="TINYINT"/>
             <result property="result" column="result" jdbcType="TINYINT"/>
             <result property="errorCode" column="error_code" jdbcType="VARCHAR"/>
@@ -18,7 +18,7 @@
             <result property="assistants" column="assistants" jdbcType="VARCHAR"/>
             <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
             <result property="updatedDate" column="updated_date" jdbcType="TIMESTAMP"/>
-            <result property="updatedBy" column="updated_by" jdbcType="VARCHAR"/>
+            <result property="updatedBy" column="updated_by" jdbcType="BIGINT"/>
             <result property="inStationTime" column="in_station_time" jdbcType="TIMESTAMP"/>
     </resultMap>
 
@@ -49,11 +49,11 @@
         ,memo,assistants,create_time
         ,updated_date,updated_by,in_station_time
         )
-        values (#{id,jdbcType=BIGINT},#{equipNo,jdbcType=VARCHAR},#{planId,jdbcType=VARCHAR}
-        ,#{stationId,jdbcType=VARCHAR},#{currNode,jdbcType=VARCHAR},#{nextNode,jdbcType=VARCHAR}
+        values (#{id,jdbcType=BIGINT},#{equipNo,jdbcType=VARCHAR},#{planId,jdbcType=BIGINT}
+        ,#{stationId,jdbcType=BIGINT},#{currNode,jdbcType=BIGINT},#{nextNode,jdbcType=BIGINT}
         ,#{status,jdbcType=TINYINT},#{result,jdbcType=TINYINT},#{errorCode,jdbcType=VARCHAR}
         ,#{memo,jdbcType=VARCHAR},#{assistants,jdbcType=VARCHAR},#{createTime,jdbcType=TIMESTAMP}
-        ,#{updatedDate,jdbcType=TIMESTAMP},#{updatedBy,jdbcType=VARCHAR},#{inStationTime,jdbcType=TIMESTAMP}
+        ,#{updatedDate,jdbcType=TIMESTAMP},#{updatedBy,jdbcType=BIGINT},#{inStationTime,jdbcType=TIMESTAMP}
         )
     </insert>
     <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.dy.pmsGlobal.pojoSta.StaDeviceLast" useGeneratedKeys="true">
@@ -78,10 +78,10 @@
         <trim prefix="values (" suffix=")" suffixOverrides=",">
                 <if test="id != null">#{id,jdbcType=BIGINT},</if>
                 <if test="equipNo != null">#{equipNo,jdbcType=VARCHAR},</if>
-                <if test="planId != null">#{planId,jdbcType=VARCHAR},</if>
-                <if test="stationId != null">#{stationId,jdbcType=VARCHAR},</if>
-                <if test="currNode != null">#{currNode,jdbcType=VARCHAR},</if>
-                <if test="nextNode != null">#{nextNode,jdbcType=VARCHAR},</if>
+                <if test="planId != null">#{planId,jdbcType=BIGINT},</if>
+                <if test="stationId != null">#{stationId,jdbcType=BIGINT},</if>
+                <if test="currNode != null">#{currNode,jdbcType=BIGINT},</if>
+                <if test="nextNode != null">#{nextNode,jdbcType=BIGINT},</if>
                 <if test="status != null">#{status,jdbcType=TINYINT},</if>
                 <if test="result != null">#{result,jdbcType=TINYINT},</if>
                 <if test="errorCode != null">#{errorCode,jdbcType=VARCHAR},</if>
@@ -89,7 +89,7 @@
                 <if test="assistants != null">#{assistants,jdbcType=VARCHAR},</if>
                 <if test="createTime != null">#{createTime,jdbcType=TIMESTAMP},</if>
                 <if test="updatedDate != null">#{updatedDate,jdbcType=TIMESTAMP},</if>
-                <if test="updatedBy != null">#{updatedBy,jdbcType=VARCHAR},</if>
+                <if test="updatedBy != null">#{updatedBy,jdbcType=BIGINT},</if>
                 <if test="inStationTime != null">#{inStationTime,jdbcType=TIMESTAMP},</if>
         </trim>
     </insert>
@@ -100,16 +100,16 @@
                     equip_no = #{equipNo,jdbcType=VARCHAR},
                 </if>
                 <if test="planId != null">
-                    plan_id = #{planId,jdbcType=VARCHAR},
+                    plan_id = #{planId,jdbcType=BIGINT},
                 </if>
                 <if test="stationId != null">
-                    station_id = #{stationId,jdbcType=VARCHAR},
+                    station_id = #{stationId,jdbcType=BIGINT},
                 </if>
                 <if test="currNode != null">
-                    curr_node = #{currNode,jdbcType=VARCHAR},
+                    curr_node = #{currNode,jdbcType=BIGINT},
                 </if>
                 <if test="nextNode != null">
-                    next_node = #{nextNode,jdbcType=VARCHAR},
+                    next_node = #{nextNode,jdbcType=BIGINT},
                 </if>
                 <if test="status != null">
                     status = #{status,jdbcType=TINYINT},
@@ -133,7 +133,7 @@
                     updated_date = #{updatedDate,jdbcType=TIMESTAMP},
                 </if>
                 <if test="updatedBy != null">
-                    updated_by = #{updatedBy,jdbcType=VARCHAR},
+                    updated_by = #{updatedBy,jdbcType=BIGINT},
                 </if>
                 <if test="inStationTime != null">
                     in_station_time = #{inStationTime,jdbcType=TIMESTAMP},
@@ -145,10 +145,10 @@
         update sta_device_last
         set 
             equip_no =  #{equipNo,jdbcType=VARCHAR},
-            plan_id =  #{planId,jdbcType=VARCHAR},
-            station_id =  #{stationId,jdbcType=VARCHAR},
-            curr_node =  #{currNode,jdbcType=VARCHAR},
-            next_node =  #{nextNode,jdbcType=VARCHAR},
+            plan_id =  #{planId,jdbcType=BIGINT},
+            station_id =  #{stationId,jdbcType=BIGINT},
+            curr_node =  #{currNode,jdbcType=BIGINT},
+            next_node =  #{nextNode,jdbcType=BIGINT},
             status =  #{status,jdbcType=TINYINT},
             result =  #{result,jdbcType=TINYINT},
             error_code =  #{errorCode,jdbcType=VARCHAR},
@@ -156,7 +156,7 @@
             assistants =  #{assistants,jdbcType=VARCHAR},
             create_time =  #{createTime,jdbcType=TIMESTAMP},
             updated_date =  #{updatedDate,jdbcType=TIMESTAMP},
-            updated_by =  #{updatedBy,jdbcType=VARCHAR},
+            updated_by =  #{updatedBy,jdbcType=BIGINT},
             in_station_time =  #{inStationTime,jdbcType=TIMESTAMP}
         where   id = #{id,jdbcType=BIGINT} 
     </update>

--
Gitblit v1.8.0