reject_link.go 487 B

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