supplier_withdraw_count.go 554 B

1234567891011121314151617181920
  1. package http_model
  2. type SupplierWithdrawCountRequest struct {
  3. SupplierId int `json:"supplier_id"` // 服务商ID
  4. }
  5. type SupplierWithdrawCountData struct {
  6. Stage1 int64 `json:"stage_1"` // 提现中
  7. Stage2 int64 `json:"stage_2"` // 已提现
  8. Stage3 int64 `json:"stage_3"` // 已驳回
  9. }
  10. func NewSupplierWithdrawCountRequest() *SupplierWithdrawCountRequest {
  11. return new(SupplierWithdrawCountRequest)
  12. }
  13. func NewSupplierWithdrawCountResponse() *CommonResponse {
  14. resp := new(CommonResponse)
  15. resp.Data = new(SupplierWithdrawCountData)
  16. return resp
  17. }