You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package md
-
- type LeftDataForMakeResp struct {
- EnterpriseName string `json:"enterprise_name"`
- EnterpriseId int `json:"enterprise_id"`
- StateZh string `json:"state_zh"`
- State int `json:"state"`
- List []LeftDataForMakeList `json:"list"`
- }
-
- type LeftDataForMakeList struct {
- GoodsName string `json:"goods_name"`
- Sku string `json:"sku"`
- Num int `json:"num"`
- SuccessNum int `json:"success_num"`
- StateZh string `json:"state_zh"`
- State int `json:"state"`
- }
-
- type RightDataForMakeReq struct {
- Page int `json:"page"`
- Limit int `json:"limit"`
- }
-
- type RightDataForMakeResp struct {
- EnterpriseName string `json:"enterprise_name"`
- EnterpriseId int `json:"enterprise_id"`
- StateZh string `json:"state_zh"`
- State int `json:"state"`
- }
|