|
@@ -16,16 +16,12 @@ type ReportChapterListItem struct {
|
|
|
ReportId int `json:"report_id"`
|
|
|
Title string `json:"title"`
|
|
|
TypeId int `json:"type_id"`
|
|
|
- IsEdit int8 `json:"is_edit"`
|
|
|
+ TypeName string `json:"type_name"`
|
|
|
Trend string `json:"trend"`
|
|
|
ReportChapterTypeKey string `json:"report_chapter_type_key"`
|
|
|
ReportChapterTypeThumb string `json:"report_chapter_type_thumb"`
|
|
|
- BannerUrl string `json:"banner_url"`
|
|
|
ReportChapterTypeName string `json:"report_chapter_type_name"`
|
|
|
Sort int `json:"sort"`
|
|
|
- EditImgUrl string `json:"edit_img_url"`
|
|
|
- PauseStartTime time.Time `json:"pause_start_time"`
|
|
|
- PauseEndTime time.Time `json:"pause_end_time"`
|
|
|
PublishTime time.Time `json:"publish_time"`
|
|
|
}
|
|
|
|
|
@@ -52,11 +48,9 @@ type ReportChapterItem struct {
|
|
|
ReportId int `json:"report_id"`
|
|
|
Title string `json:"title"`
|
|
|
TypeId int `json:"type_id"`
|
|
|
- Edit int8 `json:"edit"`
|
|
|
+ TypeName string `json:"type_name"`
|
|
|
Trend string `json:"trend"`
|
|
|
ReportChapterTypeName string `json:"report_chapter_type_name"`
|
|
|
- PauseStartTime time.Time `json:"pause_start_time"`
|
|
|
- PauseEndTime time.Time `json:"pause_end_time"`
|
|
|
PublishTime time.Time `json:"publish_time"`
|
|
|
Content string `description:"内容" json:"content"`
|
|
|
ContentSub string `description:"内容前两个章节" json:"content_sub"`
|
|
@@ -64,6 +58,10 @@ type ReportChapterItem struct {
|
|
|
VideoName string `json:"video_name"` //音频文件名称
|
|
|
VideoPlaySeconds string `json:"video_play_seconds"` //音频播放时长
|
|
|
VideoSize string `json:"video_size"`
|
|
|
+ Author string `description:"作者" json:"author"`
|
|
|
+ Stage int `description:"期数" json:"stage"`
|
|
|
+ ClassifyIdFirst int `description:"一级分类id" json:"classify_id_first"`
|
|
|
+ ClassifyNameFirst string `description:"一级分类名称" json:"classify_name_first"`
|
|
|
}
|
|
|
|
|
|
type ReportChapterDetail struct {
|