reject_link.go 580 B

12345678910111213141516171819202122
  1. package http_model
  2. type RejectLinkRequest 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. EnterpriseId string `json:"enterprise_id"`
  8. }
  9. type RejectLinkData struct {
  10. TaskIds []string `json:"task_id_list"` //任务id列表
  11. }
  12. func NewRejectLinkRequest() *RejectLinkRequest {
  13. return new(RejectLinkRequest)
  14. }
  15. func NewRejectLinkResponse() *CommonResponse {
  16. resp := new(CommonResponse)
  17. resp.Data = new(RejectLinkData)
  18. return resp
  19. }