12345678910111213141516171819202122 |
- package http_model
- type InvoiceAmountRequest struct {
- SupplierId int `json:"supplier_id"` // 服务商ID
- }
- type InvoiceAmountData struct {
- CanUpload float64 `json:"can_upload"` // 可回发票
- PendingUpload float64 `json:"pending_upload"` // 待传发票
- PlatformConfirming float64 `json:"platform_confirming"` // 平台确认中
- InvoiceReturned float64 `json:"invoice_returned"` // 已回发票
- }
- func NewInvoiceAmountRequest() *InvoiceAmountRequest {
- return new(InvoiceAmountRequest)
- }
- func NewInvoiceAmountResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(InvoiceAmountData)
- return resp
- }
|