PassproTaskCoopRequest.go 584 B

1234567891011121314151617181920212223
  1. package http_model
  2. type PassproTaskCoopRequest struct {
  3. ProjectId string `json:"project_id"`
  4. TaskIds []string `json:"task_ids"`
  5. SProjectId *int `json:"s_project_id"`
  6. OperatorId string `json:"operator_id"`
  7. OperateType int `json:"operate_type"`
  8. IsSpecial int `json:"is_special"`
  9. }
  10. type PassproTaskCoopData struct {
  11. }
  12. func NewPassproTaskCoopRequest() *PassproTaskCoopRequest {
  13. return new(PassproTaskCoopRequest)
  14. }
  15. func NewPassproTaskCoopResponse() *CommonResponse {
  16. resp := new(CommonResponse)
  17. resp.Data = new(PassproTaskCoopData)
  18. return resp
  19. }