From 4cd71c0be46a461432989ae7c5d6d56d9e7bbbed Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期一, 17 二月 2025 13:54:31 +0800
Subject: [PATCH] 查询待办任务时,判断是否挂起状态。增加一个临时导入项目的接口
---
business/src/main/resources/mapper/PlanMapper.xml | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/business/src/main/resources/mapper/PlanMapper.xml b/business/src/main/resources/mapper/PlanMapper.xml
index 139c557..d25ab8e 100644
--- a/business/src/main/resources/mapper/PlanMapper.xml
+++ b/business/src/main/resources/mapper/PlanMapper.xml
@@ -65,7 +65,7 @@
LEFT JOIN t_plan AS p ON p.project_info_id = pi.id
LEFT JOIN sys_dept d ON d.dept_id = PI.project_owner_unit
<where>
- pi.deleted = 0
+ pi.deleted = 0 AND pi.used_status = 2
<if test="query.projectName!= null and query.projectName!= ''">
AND pi.project_name LIKE CONCAT('%', #{query.projectName}, '%')
</if>
--
Gitblit v1.8.0