123456789101112131415161718 |
- package http_model
- type AcceptRechargeRequest struct {
- Id string `json:"id"` //任务id列表
- }
- type AcceptRechargeData struct {
- Id string `json:"id"` //任务id列表
- }
- func NewAcceptRechargeRequest() *AcceptRechargeRequest {
- return new(AcceptRechargeRequest)
- }
- func NewAcceptRechargeResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(AcceptRechargeData)
- return resp
- }
|