|
@@ -49,6 +49,7 @@ type MicroRoadShowPageList struct {
|
|
|
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:"分享封面图"`
|
|
@@ -175,6 +176,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
|
|
@@ -200,6 +202,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_video as a
|
|
@@ -224,6 +227,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
|
|
@@ -250,6 +254,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 `
|