From 647dcd1fb9e47b4648f68a517c4dd2a74f3ff55d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E5=AE=97=E6=A5=A0?= Date: Fri, 14 Apr 2023 16:24:22 +0800 Subject: [PATCH] 1 --- business/model/dao/dao_order.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/business/model/dao/dao_order.go b/business/model/dao/dao_order.go index bfe408d46..cce0e0aa5 100644 --- a/business/model/dao/dao_order.go +++ b/business/model/dao/dao_order.go @@ -415,7 +415,7 @@ func GetStoreOrderSkuList(db *DaoDB, storeIDs []int, finishedAtBegin, finishedAt type TotalShopMoney struct { TotalShopMoney int64 `json:"totalShopMoney"` - VendorID int `json:"vendorId"` + VendorID int `orm:"column(vendor_id)" json:"vendorID"` } func GetPlatformSettlement(db *DaoDB, storeIDs []int, finishedAtBegin, finishedAtEnd time.Time) ([]*TotalShopMoney, error) {