supplier_invoice_amount.go 662 B

12345678910111213141516171819202122
  1. package http_model
  2. type InvoiceAmountRequest struct {
  3. SupplierId int `json:"supplier_id"` // 服务商ID
  4. }
  5. type InvoiceAmountData struct {
  6. CanUpload float64 `json:"can_upload"` // 可回发票
  7. PendingUpload float64 `json:"pending_upload"` // 待传发票
  8. PlatformConfirming float64 `json:"platform_confirming"` // 平台确认中
  9. InvoiceReturned float64 `json:"invoice_returned"` // 已回发票
  10. }
  11. func NewInvoiceAmountRequest() *InvoiceAmountRequest {
  12. return new(InvoiceAmountRequest)
  13. }
  14. func NewInvoiceAmountResponse() *CommonResponse {
  15. resp := new(CommonResponse)
  16. resp.Data = new(InvoiceAmountData)
  17. return resp
  18. }