1234567891011121314151617181920212223 |
- package http_model
- type InvoiceCountRequest struct {
- SupplierId int `json:"supplier_id"` // 服务商ID
- }
- type InvoiceCountData struct {
- Stage1 int64 `json:"stage_1"` // 可回发票数量
- Stage2 int64 `json:"stage_2"` // 待传发票数量
- Stage3 int64 `json:"stage_3"` // 平台确认中数量
- Stage4 int64 `json:"stage_4"` // 已回发票数量
- Stage5 int64 `json:"stage_5"` // 驳回发票数量
- }
- func NewInvoiceCountRequest() *InvoiceCountRequest {
- return new(InvoiceCountRequest)
- }
- func NewInvoiceCountResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(InvoiceCountData)
- return resp
- }
|