sketch_localreject.go 629 B

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