From cb62861019a030081b3bcac3406aa7445060a344 Mon Sep 17 00:00:00 2001 From: jinlin <jinlin> Date: 星期二, 02 一月 2024 09:15:40 +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