package shows import ( "practice_Go/internal/model/entity" ) type GetListReq struct { Type *int `v:"in:1,2" dc:"类型(1=文章,2=视频)"` } type GetListRes struct { List []*entity.Shows `json:"list" dc:"shows list"` }