From 3d3fa72ebf55f841c8ede01c59347af5e44b773b Mon Sep 17 00:00:00 2001 From: wujianwei <wjw@11.com> Date: 星期一, 18 八月 2025 09:26:59 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/yagwly_fa_master' into yagwly_fa_master --- 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