|
@@ -53,6 +53,7 @@ type MicroRoadShowPageList struct {
|
|
|
ChartPermissionId int `description:"行业ID"`
|
|
|
ChartPermissionName string `description:"行业名称"`
|
|
|
IndustryName string `description:"产业名称"`
|
|
|
+ IndustryId int `description:"产业id"`
|
|
|
PlaySeconds string `description:"音视频时长"`
|
|
|
ActivityId int `description:"活动ID"`
|
|
|
IsCollect bool `description:"是否收藏"`
|
|
@@ -75,6 +76,7 @@ func GetMicroRoadShowVideoPageListV8(startSize, pageSize int, condition string,
|
|
|
video_duration AS play_seconds,
|
|
|
img_url AS background_img,
|
|
|
industry_name,
|
|
|
+ industry_id,
|
|
|
share_img_url AS share_img,
|
|
|
"" as activity_id
|
|
|
FROM
|
|
@@ -102,6 +104,7 @@ func GetMicroRoadShowVideoPageListV8(startSize, pageSize int, condition string,
|
|
|
"" AS play_seconds,
|
|
|
"" AS background_img,
|
|
|
"" AS industry_name,
|
|
|
+ "",
|
|
|
"" AS share_img,
|
|
|
v.activity_id
|
|
|
FROM
|
|
@@ -128,6 +131,7 @@ func GetMicroRoadShowVideoPageListV8(startSize, pageSize int, condition string,
|
|
|
a.voice_play_seconds AS play_seconds,
|
|
|
a.img_url AS background_img,
|
|
|
"" AS industry_name,
|
|
|
+ "",
|
|
|
"" AS share_img,
|
|
|
a.activity_id
|
|
|
FROM
|