- package response
- // CollectionListResp 问答留言列表接口返回
- type CollectionListResp struct {
- List []*CollectionList `json:"list"`
- Paging *PagingItem `json:"paging"`
- }
- // CollectionList 收藏列表
- type CollectionList struct {
- CollectionId int `description:"收藏ID"`
- CollectionType int `description:"收藏类型: 1-研报; 2-视频社区; 3-微路演视频"`
- }
|