From e2cef6c358e57c2bc63e67a05c88c52585bb96db Mon Sep 17 00:00:00 2001 From: wente <329538422@qq.com> Date: 星期五, 29 十二月 2023 11:22:29 +0800 Subject: [PATCH] 项目表 --- modules/mainPart/src/main/resources/mapper/configAuditReport/ConfigAuditReportContentDao.xml | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/mainPart/src/main/resources/mapper/configAuditReport/ConfigAuditReportContentDao.xml b/modules/mainPart/src/main/resources/mapper/configAuditReport/ConfigAuditReportContentDao.xml index 6a31947..4fe485b 100644 --- a/modules/mainPart/src/main/resources/mapper/configAuditReport/ConfigAuditReportContentDao.xml +++ b/modules/mainPart/src/main/resources/mapper/configAuditReport/ConfigAuditReportContentDao.xml @@ -16,10 +16,10 @@ ORDER BY ${orderBySql} </if> </select> - <select id="dictList" resultType="java.util.List"> + <select id="dictList" resultType="com.zt.life.modules.configAuditReport.model.ConfigAuditReportContent"> SET @row_number = 0; - SELECT dd.dict_label AS audit_content, - (@row_number := @row_number + 1) AS no, + SELECT (@row_number := @row_number + 1) AS no, + dd.dict_label AS auditContent FROM sys_dict_type dt JOIN sys_dict_data dd ON dt.ID = dd.DICT_TYPE_ID <where> -- Gitblit v1.9.1