acceptrechargerequest.go 401 B

123456789101112131415161718
  1. package http_model
  2. type AcceptRechargeRequest struct {
  3. Id string `json:"id"` //任务id列表
  4. }
  5. type AcceptRechargeData struct {
  6. Id string `json:"id"` //任务id列表
  7. }
  8. func NewAcceptRechargeRequest() *AcceptRechargeRequest {
  9. return new(AcceptRechargeRequest)
  10. }
  11. func NewAcceptRechargeResponse() *CommonResponse {
  12. resp := new(CommonResponse)
  13. resp.Data = new(AcceptRechargeData)
  14. return resp
  15. }