From 1278691d47fdadb53a7b4038e001ad75f218759c Mon Sep 17 00:00:00 2001 From: wente <329538422@qq.com> Date: 星期二, 02 一月 2024 10:57:16 +0800 Subject: [PATCH] 项目表 --- modules/mainPart/src/main/resources/mapper/configAuditReport/ConfigAuditReportDao.xml | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/mainPart/src/main/resources/mapper/configAuditReport/ConfigAuditReportDao.xml b/modules/mainPart/src/main/resources/mapper/configAuditReport/ConfigAuditReportDao.xml index da5da9d..e6b9fc2 100644 --- a/modules/mainPart/src/main/resources/mapper/configAuditReport/ConfigAuditReportDao.xml +++ b/modules/mainPart/src/main/resources/mapper/configAuditReport/ConfigAuditReportDao.xml @@ -4,10 +4,11 @@ <mapper namespace="com.zt.life.modules.configAuditReport.dao.ConfigAuditReportDao"> <select id="getList" resultType="com.zt.life.modules.configAuditReport.model.ConfigAuditReport"> - select a.* + select a.*,p.software_identity,p.software_name from config_audit_report a + INNER JOIN project p ON p.id = a.project_id <where> - a.is_delete = 0 + a.is_delete = 0 and p.is_delete = 0 <if test="whereSql!=null"> and ${whereSql} </if> -- Gitblit v1.9.1