From 104ae610d1d7e8dab5fff9abe4a56208941d62d7 Mon Sep 17 00:00:00 2001
From: heheng <475597332@qq.com>
Date: 星期二, 14 十月 2025 09:50:55 +0800
Subject: [PATCH] 修改修复问题及新增功能
---
multi-system/src/main/resources/mapper/system/CompanySummaryMapper.xml | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/multi-system/src/main/resources/mapper/system/CompanySummaryMapper.xml b/multi-system/src/main/resources/mapper/system/CompanySummaryMapper.xml
index a5dc3fa..42f9a2c 100644
--- a/multi-system/src/main/resources/mapper/system/CompanySummaryMapper.xml
+++ b/multi-system/src/main/resources/mapper/system/CompanySummaryMapper.xml
@@ -13,6 +13,12 @@
<if test="companySummary != null and companySummary !=''" >
company_summary = #{companySummary},
</if>
+ <if test="filePath!=null and filePath != ''">
+ file_path = #{filePath},
+ </if>
+ <if test="fileName!=null and fileName != ''">
+ file_name = #{fileName},
+ </if>
<if test="delFlag != null and delFlag != ''" >
del_flag = #{delFlag},
</if>
@@ -38,6 +44,8 @@
cs.`company_id`,
sc.`name` as company_name,
cs.`company_summary`,
+ cs.file_path,
+ cs.file_name,
cs.`del_flag`,
cs.`create_by`,
cs.`create_time`,
--
Gitblit v1.9.2