sketch_opinion.go 555 B

123456789101112131415161718192021
  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. }
  8. type SketchOpinionData struct {
  9. TaskID string `json:"task_id"` // 脚本ID
  10. }
  11. func NewSketchOpinionRequest() *SketchOpinionRequest {
  12. return new(SketchOpinionRequest)
  13. }
  14. func NewSketchOpinionResponse() *CommonResponse {
  15. resp := new(CommonResponse)
  16. resp.Data = new(SketchOpinionData)
  17. return resp
  18. }