link_accept.go 572 B

12345678910111213141516171819202122
  1. package http_model
  2. type AcceptLinkRequest struct {
  3. TaskIds string `json:"task_id_list"` //任务id列表
  4. ProjectId string `json:"project_id"`
  5. OperatorId string `json:"operator_id"`
  6. OperateType int `json:"operate_type"`
  7. Isspecial int `json:"is_special"`
  8. }
  9. type AcceptLinkData struct {
  10. TaskIds []string `json:"task_id_list"` //任务id列表
  11. }
  12. func NewAcceptLinkRequest() *AcceptLinkRequest {
  13. return new(AcceptLinkRequest)
  14. }
  15. func NewAcceptLinkResponse() *CommonResponse {
  16. resp := new(CommonResponse)
  17. resp.Data = new(AcceptLinkData)
  18. return resp
  19. }