sketch_opinion.go 599 B

12345678910111213141516171819202122
  1. package http_model
  2. type SketchOpinionRequest struct {
  3. TaskID string `json:"task_id"` //任务-id
  4. ProjectId string `json:"project_id"`
  5. SketchOpinion string `json:"sketch_opinion"` //初稿意见
  6. OperatorId string `json:"operator_id"`
  7. OperateType int `json:"operate_type"`
  8. }
  9. type SketchOpinionData struct {
  10. TaskID string `json:"task_id"` // 脚本ID
  11. }
  12. func NewSketchOpinionRequest() *SketchOpinionRequest {
  13. return new(SketchOpinionRequest)
  14. }
  15. func NewSketchOpinionResponse() *CommonResponse {
  16. resp := new(CommonResponse)
  17. resp.Data = new(SketchOpinionData)
  18. return resp
  19. }