sketch_opinion.go 644 B

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