sketch_opinion.go 477 B

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