sketch_accept.go 586 B

12345678910111213141516171819202122
  1. package http_model
  2. type AcceptSketchRequest 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. IsSpecial int `json:"is_special"`
  8. }
  9. type AcceptSketchData struct {
  10. TaskIds []string `json:"task_id_list"` //任务id列表
  11. }
  12. func NewAcceptSketchRequest() *AcceptSketchRequest {
  13. return new(AcceptSketchRequest)
  14. }
  15. func NewAcceptSketchResponse() *CommonResponse {
  16. resp := new(CommonResponse)
  17. resp.Data = new(AcceptSketchData)
  18. return resp
  19. }