From e53e2963a6db6e66177a51eb1942e760f2b12624 Mon Sep 17 00:00:00 2001 From: "jiaji.H" Date: Mon, 2 Feb 2026 20:30:03 +0800 Subject: [PATCH] =?UTF-8?q?Updata=EF=BC=9A=E5=A2=9E=E5=8A=A0=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E6=89=93=E5=8D=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/dao/invoiceDao.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/dao/invoiceDao.go b/internal/dao/invoiceDao.go index 18b3923..99e8e33 100644 --- a/internal/dao/invoiceDao.go +++ b/internal/dao/invoiceDao.go @@ -10,7 +10,8 @@ import ( ) func CreateInvoice(req *bundle.CreateInvoiceReq) (res *bundle.CreateInvoiceResp, err error) { - fmt.Println("创建发票信息:url=%s,type=%d,no=%s,status=%d,remark=%s", req.InvoiceUrl, req.InvoiceType, req.InvoiceNo, req.PaperInvocieStatus, req.Remark) + //打印信息 + fmt.Println("创建发票信息:userId=", req.UserId, "userNum=", req.UserNum, "userName=", req.UserName, "orderNo=", req.OrderNo, "applyTime=", req.ApplyTime, "invoiceType=", req.InvoiceType, "invoiceNo=", req.InvoiceNo, "invoiceUrl=", req.InvoiceUrl, "paperInvocieStatus=", req.PaperInvocieStatus, "remark=", req.Remark) res = new(bundle.CreateInvoiceResp) userId, err := strconv.Atoi(req.UserId) if err != nil {