From 3e4fb6b20cdb85b1bf290a88f68a4646915da78d Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期六, 03 八月 2024 11:06:52 +0800
Subject: [PATCH] 增加获取系统信息相关实用类,及相关依赖

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

diff --git a/pms-parent/pms-global/src/main/resources/mapper/PrDeviceMapper.xml b/pms-parent/pms-global/src/main/resources/mapper/PrDeviceMapper.xml
index 581d229..e80217e 100644
--- a/pms-parent/pms-global/src/main/resources/mapper/PrDeviceMapper.xml
+++ b/pms-parent/pms-global/src/main/resources/mapper/PrDeviceMapper.xml
@@ -52,7 +52,7 @@
                 <if test="id != null">#{id,jdbcType=BIGINT},</if>
                 <if test="proId != null">#{proId,jdbcType=BIGINT},</if>
                 <if test="batchId != null">#{batchId,jdbcType=BIGINT},</if>
-                <if test="deviceNo != null">#{deviceNo</if>
+                <if test="deviceNo != null">#{deviceNo},</if>
                 <if test="status != null">#{status,jdbcType=TINYINT},</if>
         </trim>
     </insert>
@@ -79,10 +79,10 @@
                     batch_id = #{batchId,jdbcType=BIGINT},
                 </if>
                 <if test="deviceNo != null">
-                    device_no = #{deviceNo
+                    device_no = #{deviceNo},
                 </if>
                 <if test="status != null">
-                    status = #{status,jdbcType=TINYINT},
+                    status = #{status,jdbcType=TINYINT}
                 </if>
         </set>
         where   id = #{id,jdbcType=BIGINT} 
@@ -92,7 +92,7 @@
         set 
             pro_id =  #{proId,jdbcType=BIGINT},
             batch_id =  #{batchId,jdbcType=BIGINT},
-            device_no = #{deviceNo
+            device_no = #{deviceNo},
             status =  #{status,jdbcType=TINYINT}
         where   id = #{id,jdbcType=BIGINT} 
     </update>

--
Gitblit v1.8.0