12345678910111213141516171819202122 |
- package http_model
- type GetSketchInfoByTaskIdRequest struct {
- TaskId int32 `json:"task_id"`
- }
- type SketchInfoResponse struct {
- Title string `json:"title"`
- PhotoUrl string `json:"photo_url"`
- Type int32 `json:"type"`
- Content string `json:"content"`
- }
- func NewGetSketchInfoByTaskIdRequest() *GetSketchInfoByTaskIdRequest {
- return new(GetSketchInfoByTaskIdRequest)
- }
- func NewGetSketchInfoByTaskIdResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(SketchInfoResponse)
- return resp
- }
|