1234567891011121314151617181920 |
- package http_model
- type SupplierWithdrawCountRequest struct {
- SupplierId int `json:"supplier_id"` // 服务商ID
- }
- type SupplierWithdrawCountData struct {
- Stage1 int64 `json:"stage_1"` // 提现中
- Stage2 int64 `json:"stage_2"` // 已提现
- Stage3 int64 `json:"stage_3"` // 已驳回
- }
- func NewSupplierWithdrawCountRequest() *SupplierWithdrawCountRequest {
- return new(SupplierWithdrawCountRequest)
- }
- func NewSupplierWithdrawCountResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(SupplierWithdrawCountData)
- return resp
- }
|