From aad659957f44fe5fcafb69ec2cb5067c6be33449 Mon Sep 17 00:00:00 2001 From: sian Date: Wed, 21 Sep 2022 17:27:41 +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 --- supply/sku.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/supply/sku.go b/supply/sku.go index 0f63d78..13614b5 100644 --- a/supply/sku.go +++ b/supply/sku.go @@ -331,6 +331,15 @@ type ByIdsSkuItem struct { AfterAdjustPrice decimal.Decimal `json:"afterAdjustPrice"` // 改价后加价金额 Handle uint `json:"handle"` // 1=未处理 2=已处理 Reason string `json:"reason"` // 驳回原因 + Specifications []SpecItem `json:"specifications"` +} + +type SpecItem struct { + Id uint `json:"id"` + SkuId uint `json:"skuId"` + Name string `json:"name"` + Value string `json:"value"` + GroupName string `json:"groupName"` } // FindByIds @Title 根据Ids查询sku信息