From a7c7bc44db471042998f1ffbfb77cb673cf24e87 Mon Sep 17 00:00:00 2001 From: jhc Date: Sun, 23 Feb 2025 10:38:15 +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 961467e..3e99749 100644 --- a/internal/logic/orderRecordsLogic.go +++ b/internal/logic/orderRecordsLogic.go @@ -27,6 +27,7 @@ func UpdateOrderRecord(req *bundle.OrderRecord) (res *bundle.CommonResponse, err orderRecord := new(model.BundleOrderRecords) _ = copier.CopyWithOption(&orderRecord, req, copier.Option{DeepCopy: true}) orderRecord.UUID = req.Uuid + orderRecord.BundleUUID = req.BundleUuid res, err = dao.UpdateOrderRecord(orderRecord) return }