123456789101112131415161718192021 |
- package http_model
- type GetSketchInfoByTaskIdRequest struct {
- TaskId int32 `json:"task_id"`
- }
- type SketchInfoResponse struct {
- 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
- }
|