sketch_localreject.go 536 B

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