From abf2ab190a727e4f8b5227d7b2f278881fc25cd3 Mon Sep 17 00:00:00 2001 From: kanade Date: Wed, 11 Mar 2026 12:27:14 +0800 Subject: [PATCH] =?UTF-8?q?feat(service):=20=E6=B7=BB=E5=8A=A0=E6=94=B6?= =?UTF-8?q?=E6=AC=BE=E5=8D=95=E6=89=8B=E7=BB=AD=E8=B4=B9=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在Receipt结构体中新增Commission字段用于存储手续费信息 - 保持原有收款单功能不变,扩展数据模型支持手续费记录 --- ik3cloud/receipt.go | 1 + 1 file changed, 1 insertion(+) diff --git a/ik3cloud/receipt.go b/ik3cloud/receipt.go index 6a02cc9..f5d5e65 100644 --- a/ik3cloud/receipt.go +++ b/ik3cloud/receipt.go @@ -32,6 +32,7 @@ type ReceiptCost struct { Amount decimal.Decimal // 金额 Remarks string // 备注 BankAccount string // 银行账户 + Commission decimal.Decimal // 手续费 } // Save @TITLE 保存收款单