From 6dfbcfe0ded79257278f6a87ab6e5b99155d755d Mon Sep 17 00:00:00 2001 From: Mzaxd Date: Mon, 22 May 2023 11:00:47 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E6=8A=A5=E5=91=8A=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E6=96=B0=E5=A2=9E=E5=AD=97=E6=AE=B5=E2=80=9C?= =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E4=BA=BA=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/resources/mybatis/mapper/mysql/ReportManageMapper.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/adc-da-report/src/main/resources/mybatis/mapper/mysql/ReportManageMapper.xml b/adc-da-report/src/main/resources/mybatis/mapper/mysql/ReportManageMapper.xml index 982c730..51fa0ed 100644 --- a/adc-da-report/src/main/resources/mybatis/mapper/mysql/ReportManageMapper.xml +++ b/adc-da-report/src/main/resources/mybatis/mapper/mysql/ReportManageMapper.xml @@ -185,11 +185,14 @@ t.maincontent, t.confidentialLevel, t.privacyLevel, + t.createUserId, + tu.USNAME AS createUserName, IF(bpn.id is null,1, IF(bpn.SUBMIT_STATUS = 1,0,1) ) as isAct FROM `tt_report_manage` AS t LEFT JOIN bus_process_name as bpn on bpn.data_id = t.id and bpn.prc_type = '5' + LEFT JOIN ts_user as tu ON tu.USID = t.createUserId WHERE t.del_flag = 0