sketch_localreject.go 581 B

123456789101112131415161718192021
  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. OperateType int `json:"operate_type"`
  7. }
  8. type LocalRejectSketchData struct {
  9. TaskIds []string `json:"task_id_list"` //任务id列表
  10. }
  11. func NewLocalRejectSketchRequest() *LocalRejectSketchRequest {
  12. return new(LocalRejectSketchRequest)
  13. }
  14. func NewLocalRejectSketchResponse() *CommonResponse {
  15. resp := new(CommonResponse)
  16. resp.Data = new(LocalRejectSketchData)
  17. return resp
  18. }