From c10d6358b9f014375a13821465bc978d0c0da22e Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Wed, 29 May 2024 17:17:08 +0800
Subject: [PATCH] 通过E呼即办数据统计

---
 src/main/java/org/springblade/modules/task/mapper/TaskRepairStepMapper.xml |   11 +++++++----
 1 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/springblade/modules/task/mapper/TaskRepairStepMapper.xml b/src/main/java/org/springblade/modules/task/mapper/TaskRepairStepMapper.xml
index 117446b..1ae152e 100644
--- a/src/main/java/org/springblade/modules/task/mapper/TaskRepairStepMapper.xml
+++ b/src/main/java/org/springblade/modules/task/mapper/TaskRepairStepMapper.xml
@@ -16,13 +16,14 @@
         <result property="id"    column="id"    />
         <result property="repairId"    column="repair_id"    />
         <result property="content"    column="content"    />
-        <result property="imageList"    column="image_list"    />
+        <result property="videoList"    column="video_list"    />
         <result property="name"    column="name"    />
         <result property="mobile"    column="mobile"    />
         <result property="userId"    column="user_id"    />
         <result property="peopleType"    column="people_type"    />
         <result property="createTime"    column="create_time"    />
         <result property="updateTime"    column="update_time"    />
+        <result property="imageList"    column="image_list"    />
     </resultMap>
 
     <sql id="selectTaskRepairStep">
@@ -30,13 +31,14 @@
             id,
             repair_id,
             content,
-            image_list,
+            video_list,
             name,
             mobile,
             user_id,
             people_type,
             create_time,
-            update_time
+            update_time,
+            image_list
         from
             jczz_task_repair_step
     </sql>
@@ -53,13 +55,14 @@
             <if test="id != null "> and id = #{id}</if>
             <if test="repairId != null "> and repair_id = #{repairId}</if>
             <if test="content != null  and content != ''"> and content = #{content}</if>
-            <if test="imageList != null  and imageList != ''"> and image_list = #{imageList}</if>
+            <if test="videoList != null  and videoList != ''"> and video_list = #{videoList}</if>
             <if test="name != null  and name != ''"> and name = #{name}</if>
             <if test="mobile != null  and mobile != ''"> and mobile = #{mobile}</if>
             <if test="userId != null "> and user_id = #{userId}</if>
             <if test="peopleType != null  and peopleType != ''"> and people_type = #{peopleType}</if>
             <if test="createTime != null "> and create_time = #{createTime}</if>
             <if test="updateTime != null "> and update_time = #{updateTime}</if>
+            <if test="imageList != null  and imageList != ''"> and image_list = #{imageList}</if>
         </where>
     </select>
 </mapper>

--
Gitblit v1.9.3