localreject_link.go 522 B

1234567891011121314151617181920
  1. package http_model
  2. type LocalRejectLinkRequest struct {
  3. TaskIds string `json:"task_id_list"` //任务id列表
  4. ProjectId string `json:"project_id"`
  5. OperatorId string `json:"operator_id"`
  6. }
  7. type LocalRejectLinkData struct {
  8. TaskIds []string `json:"task_id_list"` //任务id列表
  9. }
  10. func NewLocalRejectLinkRequest() *LocalRejectLinkRequest {
  11. return new(LocalRejectLinkRequest)
  12. }
  13. func NewLocalRejectLinkResponse() *CommonResponse {
  14. resp := new(CommonResponse)
  15. resp.Data = new(LocalRejectLinkData)
  16. return resp
  17. }