|
@@ -40,6 +40,8 @@ type MicroRoadShowPageList struct {
|
|
|
Title string `description:"标题"`
|
|
|
ResourceUrl string `description:"链接"`
|
|
|
Type int `description:"类型: 1-音频; 2-活动视频; 3-产业视频 、 4-系列问答视频"`
|
|
|
+ LabelType int `description:"标签类型: 1-路演回放; 2-调研反馈; 3-产业视频; 4-问答系列"`
|
|
|
+ ActivityFileType int `description:"活动音视频文件类型: 1-路演回放; 2-调研反馈"`
|
|
|
PublishTime string `description:"发布时间"`
|
|
|
BackgroundImg string `description:"背景图"`
|
|
|
ShareImg string `description:"分享封面图"`
|
|
@@ -344,6 +346,7 @@ func GetMicroRoadShowVideoPageListV12(startSize, pageSize int, audioAct string,
|
|
|
"" AS industry_name,
|
|
|
0 AS industry_id,
|
|
|
a.share_img,
|
|
|
+ a.file_type as activity_file_type,
|
|
|
a.activity_id
|
|
|
FROM
|
|
|
cygx_activity_voice AS a
|
|
@@ -364,11 +367,12 @@ func GetMicroRoadShowVideoPageListV12(startSize, pageSize int, audioAct string,
|
|
|
b.activity_time as publish_time,
|
|
|
b.chart_permission_id,
|
|
|
b.chart_permission_name,
|
|
|
- "" AS play_seconds,
|
|
|
+ a.video_duration AS play_seconds,
|
|
|
a.background_img,
|
|
|
"" AS industry_name,
|
|
|
0 AS industry_id,
|
|
|
a.share_img,
|
|
|
+ a.file_type as activity_file_type,
|
|
|
a.activity_id
|
|
|
FROM
|
|
|
cygx_activity_video as a
|
|
@@ -393,6 +397,7 @@ func GetMicroRoadShowVideoPageListV12(startSize, pageSize int, audioAct string,
|
|
|
industry_name,
|
|
|
industry_id,
|
|
|
share_img_url AS share_img,
|
|
|
+ '' as activity_file_type,
|
|
|
"" as activity_id
|
|
|
FROM
|
|
|
cygx_micro_roadshow_video as a
|
|
@@ -419,6 +424,7 @@ func GetMicroRoadShowVideoPageListV12(startSize, pageSize int, audioAct string,
|
|
|
"" AS industry_name,
|
|
|
0 AS industry_id,
|
|
|
a.share_img,
|
|
|
+ '' as activity_file_type,
|
|
|
0 as activity_id
|
|
|
FROM
|
|
|
cygx_askserie_video AS a WHERE 1= 1 `
|