1234567891011121314151617181920212223 |
- package http_model
- type PassproTaskCoopRequest struct {
- ProjectId string `json:"project_id"`
- TaskIds []string `json:"task_ids"`
- OperatorId string `json:"operator_id"`
- EnterpriseId string `json:"enterprise_id"`
- OperateType int `json:"operate_type"`
- IsSpecial int `json:"is_special"`
- }
- type PassproTaskCoopData struct {
- }
- func NewPassproTaskCoopRequest() *PassproTaskCoopRequest {
- return new(PassproTaskCoopRequest)
- }
- func NewPassproTaskCoopResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(PassproTaskCoopData)
- return resp
- }
|