finance
黄伟 2 years ago
parent 06a82d9ea4
commit 24de88ef74

@ -73,16 +73,17 @@ type ArgsGoodsInfo struct {
} }
type ReplyGoodsInfo struct { type ReplyGoodsInfo struct {
Id uint `json:"id"` Id uint `json:"id"`
Name string `json:"name"` Name string `json:"name"`
SupplierId uint `json:"supplierId"` SupplierId uint `json:"supplierId"`
CategoryId uint `json:"categoryId"` SupplierName string `json:"supplierName"`
BrandId uint `json:"brandId"` CategoryId uint `json:"categoryId"`
Imgs []string `json:"imgs"` BrandId uint `json:"brandId"`
Content string `json:"content"` Imgs []string `json:"imgs"`
Attributes []GoodsAttributeItem `json:"attributes"` Content string `json:"content"`
Skus []SkuItem `json:"skus"` Attributes []GoodsAttributeItem `json:"attributes"`
Status uint `json:"status"` Skus []SkuItem `json:"skus"`
Status uint `json:"status"`
} }
type GoodsAttributeItem struct { type GoodsAttributeItem struct {

@ -53,14 +53,13 @@ type ReplySupplierLists struct {
} }
type SupplierItem struct { type SupplierItem struct {
Id uint Id uint
SupplierName string // 供应商名称 SupplierName string // 供应商名称
Status uint // 状态 Status uint // 状态
Prepayment decimal.Decimal // 预付款余额 Prepayment decimal.Decimal // 预付款余额
WarnStatus uint // 预警状态 WarnStatus uint // 预警状态
ApplyUserId uint // 创建人Id ApplyUserId uint // 创建人Id
ApplyUserName string // 创建人名称 CreatedAt int64 // 创建时间
CreatedAt int64 // 创建时间
} }
// Lists @Title 供应商列表 // Lists @Title 供应商列表

Loading…
Cancel
Save