sketch_accept.go 635 B

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