sketch_accept.go 457 B

12345678910111213141516171819
  1. package http_model
  2. type AcceptSketchRequest struct {
  3. StrategyID int64 `json:"strategy_id"` //招募策略id
  4. TaskID int64 `json:"task_id"` //任务-id
  5. }
  6. type AcceptSketchData struct {
  7. TaskID int64 `json:"task_id"` // 脚本ID
  8. }
  9. func NewAcceptSketchRequest() *AcceptSketchRequest {
  10. return new(AcceptSketchRequest)
  11. }
  12. func NewAcceptSketchResponse() *CommonResponse {
  13. resp := new(CommonResponse)
  14. resp.Data = new(AcceptSketchData)
  15. return resp
  16. }