面包店
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.

md_data.go 883 B

7 maanden geleden
123456789101112131415161718192021222324252627282930
  1. package md
  2. type LeftDataForMakeResp struct {
  3. EnterpriseName string `json:"enterprise_name"`
  4. EnterpriseId int `json:"enterprise_id"`
  5. StateZh string `json:"state_zh"`
  6. State int `json:"state"`
  7. List []LeftDataForMakeList `json:"list"`
  8. }
  9. type LeftDataForMakeList struct {
  10. GoodsName string `json:"goods_name"`
  11. Sku string `json:"sku"`
  12. Num int `json:"num"`
  13. SuccessNum int `json:"success_num"`
  14. StateZh string `json:"state_zh"`
  15. State int `json:"state"`
  16. }
  17. type RightDataForMakeReq struct {
  18. Page int `json:"page"`
  19. Limit int `json:"limit"`
  20. }
  21. type RightDataForMakeResp struct {
  22. EnterpriseName string `json:"enterprise_name"`
  23. EnterpriseId int `json:"enterprise_id"`
  24. StateZh string `json:"state_zh"`
  25. State int `json:"state"`
  26. }