1234567891011121314151617181920 |
- package http_model
- type AcceptDataRequest struct {
- Payment float64 `json:"payment"` //招募策略id
- TaskIds string `json:"task_id_list"` //任务id列表
- ProjectId int64 `json:"project_id"` //项目id
- }
- type AcceptDataData struct {
- TaskIds []int `json:"taskIds"` //任务id列表
- }
- func NewAcceptDataRequest() *AcceptDataRequest {
- return new(AcceptDataRequest)
- }
- func NewAcceptDataResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(AcceptDataData)
- return resp
- }
|