数据采集
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

32 satır
744 B

  1. package md
  2. const (
  3. QrcodeTotalNums = 100000
  4. )
  5. type QrcodeBatchListReq struct {
  6. Page int `json:"page"`
  7. Limit int `json:"limit"`
  8. }
  9. type QrcodeBatchAddReq struct {
  10. Name string `json:"name"`
  11. ExpireDate string `json:"expire_date"`
  12. List []QrcodeBatchAddReqList `json:"list"`
  13. Memo string `json:"memo"`
  14. }
  15. type QrcodeBatchAddReqList struct {
  16. Num int `json:"num"`
  17. Amount string `json:"amount"`
  18. }
  19. type QrcodeBatchAddReqListDetail struct {
  20. Num int `json:"num"`
  21. WaitUseNum int `json:"wait_use_num"`
  22. UsedNum int `json:"used_num"`
  23. ExpiredNum int `json:"expired_num"`
  24. CancelNum int `json:"cancel_num"`
  25. Amount string `json:"amount"`
  26. }