|
|
|
@ -40,11 +40,11 @@ type SkuItem struct {
|
|
|
|
|
Tax string `json:"tax"`
|
|
|
|
|
Unit string `json:"unit"`
|
|
|
|
|
UpcCode string `json:"upcCode"`
|
|
|
|
|
TaxName string `json:"taxName"`
|
|
|
|
|
TaxCode string `json:"taxCode"`
|
|
|
|
|
Status uint `json:"status"`
|
|
|
|
|
CreatedAt int64 `json:"createdAt"`
|
|
|
|
|
UpdatedAt int64 `json:"updatedAt"`
|
|
|
|
|
TaxName string `json:"taxName"`
|
|
|
|
|
TaxCode string `json:"taxCode"`
|
|
|
|
|
}
|
|
|
|
|
type ReplySkuList struct {
|
|
|
|
|
Lists []SkuItem `json:"lists"`
|
|
|
|
@ -85,6 +85,8 @@ type SkuDetailItem struct {
|
|
|
|
|
Tax string `json:"tax"`
|
|
|
|
|
Unit string `json:"unit"`
|
|
|
|
|
UpcCode string `json:"upcCode"`
|
|
|
|
|
TaxName string `json:"taxName"`
|
|
|
|
|
TaxCode string `json:"taxCode"`
|
|
|
|
|
Status uint `json:"status"`
|
|
|
|
|
CreatedAt int64 `json:"createdAt"`
|
|
|
|
|
UpdatedAt int64 `json:"updatedAt"`
|
|
|
|
@ -92,8 +94,6 @@ type SkuDetailItem struct {
|
|
|
|
|
Imgs []SkuImg `json:"imgs"`
|
|
|
|
|
Specifications []SkuSpecification `json:"specifications"`
|
|
|
|
|
GroupSkuIds []uint `json:"groupSkuIds"`
|
|
|
|
|
TaxName string
|
|
|
|
|
TaxCode string
|
|
|
|
|
}
|
|
|
|
|
type SkuImg struct {
|
|
|
|
|
Path string `json:"path"`
|
|
|
|
|