sketch_opinion.go 540 B

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