From e3588d4435ebec31304578ebfe79f9a046a67a03 Mon Sep 17 00:00:00 2001
From: wujianwei <wjw@11.com>
Date: 星期五, 15 八月 2025 15:45:54 +0800
Subject: [PATCH] 修改关联

---
 service/src/main/resources/mapper/cwgl/EstimatedReceivableBillLogMapper.xml |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/service/src/main/resources/mapper/cwgl/EstimatedReceivableBillLogMapper.xml b/service/src/main/resources/mapper/cwgl/EstimatedReceivableBillLogMapper.xml
index e53c414..0220992 100644
--- a/service/src/main/resources/mapper/cwgl/EstimatedReceivableBillLogMapper.xml
+++ b/service/src/main/resources/mapper/cwgl/EstimatedReceivableBillLogMapper.xml
@@ -10,10 +10,11 @@
         <result property="createBy"    column="create_by"    />
         <result property="createTime"    column="create_time"    />
         <result property="operation"    column="operation"    />
+        <result property="fileName"    column="file_name"    />
     </resultMap>
 
     <sql id="selectEstimatedReceivableBillLogVo">
-        select thisTab.id, thisTab.bill_id, thisTab.create_by, thisTab.create_time, thisTab.operation from estimated_receivable_bill_log AS thisTab
+        select thisTab.id, thisTab.bill_id, thisTab.create_by, thisTab.create_time, thisTab.operation, thisTab.file_name from estimated_receivable_bill_log AS thisTab
     </sql>
     <sql id="selectEstimatedReceivableBillLogVoCount">
         select count(0) from estimated_receivable_bill_log as thisTab
@@ -53,12 +54,14 @@
             <if test="createBy != null">create_by,</if>
             <if test="createTime != null">create_time,</if>
             <if test="operation != null">operation,</if>
+            <if test="fileName != null">file_name,</if>
          </trim>
         <trim prefix="values (" suffix=")" suffixOverrides=",">
             <if test="billId != null">#{billId},</if>
             <if test="createBy != null">#{createBy},</if>
             <if test="createTime != null">#{createTime},</if>
             <if test="operation != null">#{operation},</if>
+            <if test="fileName != null">#{fileName},</if>
          </trim>
     </insert>
 

--
Gitblit v1.8.0