From 1ab042b65ba0491f10ce5f21579a45fa01901e97 Mon Sep 17 00:00:00 2001 From: kanade Date: Mon, 25 May 2026 15:34:46 +0800 Subject: [PATCH] =?UTF-8?q?refactor(payment):=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E9=A2=84=E4=BB=98=E6=AC=BE=E5=8F=82=E6=95=B0=E7=BB=93=E6=9E=84?= =?UTF-8?q?=E4=BD=93=E5=AD=97=E6=AE=B5=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将ArgsPrepaidAdd结构体中的PurchaseId字段重命名为PaymentId - 更新字段注释从"采购合同ID"为"付款单ID" --- erp/payment/prepaid.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erp/payment/prepaid.go b/erp/payment/prepaid.go index 8adfa07..ef959b3 100644 --- a/erp/payment/prepaid.go +++ b/erp/payment/prepaid.go @@ -31,7 +31,7 @@ func (c *prepaid) All(ctx context.Context, paymentId int64) (reply []PrepaidItem } type ArgsPrepaidAdd struct { - PurchaseId int64 // 采购合同ID + PaymentId int64 // 付款单ID PrepaidAdd }