From 3c6f6c1e3016e38146a4c46be6e7b625c35591f2 Mon Sep 17 00:00:00 2001
From: zhai <1528081232@qq.com>
Date: 星期四, 18 十二月 2025 11:49:18 +0800
Subject: [PATCH] 1、添加报表 2、修改添加报表报错

---
 src/main/resources/mapper/PhysicalDetailMapper.xml |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/resources/mapper/PhysicalDetailMapper.xml b/src/main/resources/mapper/PhysicalDetailMapper.xml
index 04c2e02..9726e1b 100644
--- a/src/main/resources/mapper/PhysicalDetailMapper.xml
+++ b/src/main/resources/mapper/PhysicalDetailMapper.xml
@@ -3,7 +3,7 @@
 <mapper namespace="com.zbooksoft.gdmis.dao.PhysicalDetailMapper">
     <select id="selectDistinctParentPhysicalInfo" parameterType="Long"
             resultType="com.zbooksoft.gdmis.data.vo.ParentPhysicalInfo">
-        select distinct file_id, archival_code, file_title
+        select distinct file_id, project_num, project_name
         FROM UTL_PHYSICAL_DETAIL
         WHERE (form_id = 0 or form_id is null)
           and create_user_id = #{createUserId}
@@ -11,7 +11,7 @@
 
     <select id="selectDistinctParentPhysicalInfoByFormId" parameterType="Long"
             resultType="com.zbooksoft.gdmis.data.vo.ParentPhysicalInfo">
-        select distinct file_id, archival_code, file_title
+        select distinct file_id, project_num, project_name
         FROM UTL_PHYSICAL_DETAIL
         WHERE form_id = #{formId}
     </select>

--
Gitblit v1.9.1