广告平台(媒体使用)
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.
 
 
 
 
 
 

33 lines
1.2 KiB

  1. package md
  2. type InvoiceCenterDataReq struct {
  3. Limit string `json:"limit"`
  4. Page string `json:"page" `
  5. Type string `json:"type" example:"0电子发票 1纸质发票"`
  6. }
  7. type InvoiceCenterDataRes struct {
  8. List []InvoiceCenterDataData `json:"list" `
  9. Total int64 `json:"total"`
  10. State []SelectData `json:"state"`
  11. }
  12. type InvoiceCenterDataData struct {
  13. Id string `json:"id"`
  14. TimeStr string `json:"time_str" example:"上传时间"`
  15. State string `json:"state" example:"结算单状态(0:待审核 1:审核通过 2:审核拒绝)"`
  16. Count string `json:"count" example:"数量"`
  17. Month string `json:"month" example:"订单月份"`
  18. Amount string `json:"amount" example:"结算金额"`
  19. }
  20. type InvoiceCenterDataDetailRes struct {
  21. Data InvoiceCenterDataDetailData `json:"data" `
  22. State []SelectData `json:"state"`
  23. }
  24. type InvoiceCenterDataDetailData struct {
  25. TimeStr string `json:"time_str" example:"上传时间"`
  26. State string `json:"state" example:"结算单状态(0:待审核 1:审核通过 2:审核拒绝)"`
  27. Count string `json:"count" example:"数量"`
  28. File []InvoiceFile `json:"file"`
  29. }