12345678910111213141516171819 |
- package http_model
- type AcceptSketchRequest struct {
- StrategyID int64 `json:"strategy_id"` //招募策略id
- TaskID int64 `json:"task_id"` //任务-id
- }
- type AcceptSketchData struct {
- TaskID int64 `json:"task_id"` // 脚本ID
- }
- func NewAcceptSketchRequest() *AcceptSketchRequest {
- return new(AcceptSketchRequest)
- }
- func NewAcceptSketchResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(AcceptSketchData)
- return resp
- }
|