PassproTaskCoopRequest.go 498 B

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