From c6c28b3f752fb8fcd7e04a9cf1d3f5716e769106 Mon Sep 17 00:00:00 2001 From: jhc Date: Sun, 23 Feb 2025 10:29:34 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/logic/orderRecordsLogic.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/logic/orderRecordsLogic.go b/internal/logic/orderRecordsLogic.go index e8052d1..1db8a83 100644 --- a/internal/logic/orderRecordsLogic.go +++ b/internal/logic/orderRecordsLogic.go @@ -26,6 +26,7 @@ func UpdateOrderRecord(req *bundle.OrderRecord) (res *bundle.CommonResponse, err res = new(bundle.CommonResponse) orderRecord := new(model.BundleOrderRecords) _ = copier.CopyWithOption(&orderRecord, req, copier.Option{DeepCopy: true}) + orderRecord.BundleUUID = req.BundleUuid res, err = dao.UpdateOrderRecord(orderRecord) return }