From 279366f14d6e1361b6caf7c05b74f0cea4227a36 Mon Sep 17 00:00:00 2001
From: wujianwei <wjw@11.com>
Date: 星期五, 27 三月 2026 10:53:28 +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