From 5bcb25e34b0d52ebc08f79ca38b88314c410c7f0 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期一, 04 十一月 2024 18:14:29 +0800
Subject: [PATCH] 优化代码

---
 java110-db/src/main/resources/mapper/oa/WorkTaskItemV1ServiceDaoImplMapper.xml |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/java110-db/src/main/resources/mapper/oa/WorkTaskItemV1ServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/oa/WorkTaskItemV1ServiceDaoImplMapper.xml
index 3e52524..aa8d272 100644
--- a/java110-db/src/main/resources/mapper/oa/WorkTaskItemV1ServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/oa/WorkTaskItemV1ServiceDaoImplMapper.xml
@@ -21,10 +21,12 @@
         select t.deduction_person_id deductionPersonId,t.finish_time finishTime,t.deduction_person_name
         deductionPersonName,t.deduction_money deductionMoney,t.content_id contentId,t.status_cd statusCd,t.store_id
         storeId,t.work_id workId,t.deduction_reason deductionReason,t.item_id itemId,t.state,t.community_id
-        communityId,t.task_id taskId,wpc.content,we.staff_name staffName,we.remark
+        communityId,t.task_id taskId,wpc.content,we.staff_name staffName,we.remark,t.create_time createTime,
+        wpf.path_url pathUrl
         from work_task_item t
         left join work_pool_content wpc on t.content_id = wpc.content_id and wpc.status_cd = '0'
         left join work_event we on t.item_id = we.item_id and we.status_cd = '0' and we.event_type = '1001'
+        left join work_pool_file wpf on t.item_id = wpf.item_id and wpf.status_cd = '0'
         where 1 =1
         <if test="deductionPersonId !=null and deductionPersonId != ''">
             and t.deduction_person_id= #{deductionPersonId}

--
Gitblit v1.8.0