|
@@ -93,6 +93,7 @@ type ActivityRep struct {
|
|
|
BackgroundImg string `description:"封面图片"`
|
|
|
ShareImg string `description:"分享图片"`
|
|
|
AreaType int `description:"地区,1国内,2海外,默认1"`
|
|
|
+ IsZoom int `description:"是否是Zoom模版 1是,0否"`
|
|
|
}
|
|
|
|
|
|
// 活动添加、修改入参
|
|
@@ -180,6 +181,7 @@ type ActivityDetail struct {
|
|
|
ShareImg string `description:"分享图片"`
|
|
|
TopTime int `description:"置顶时间"`
|
|
|
AreaType int `description:"地区,1国内,2海外,默认1"`
|
|
|
+ IsZoom int `description:"是否是Zoom模版 1是,0否"`
|
|
|
}
|
|
|
|
|
|
type ActivityDetailRep struct {
|
|
@@ -253,6 +255,8 @@ type CygxActivity struct {
|
|
|
ChartPermissionNameDeputy string `description:"行业名称"`
|
|
|
CancelDeadline string `description:"取消报名截止时间"`
|
|
|
AreaType int `description:"地区,1国内,2海外,默认1"`
|
|
|
+ IsZoom int `description:"是否是Zoom模版 1是,0否"`
|
|
|
+ MeetingId string `description:"会议ID"`
|
|
|
}
|
|
|
|
|
|
type CygxActivityEditDetail struct {
|
|
@@ -426,6 +430,8 @@ func EditActivity(item *CygxActivity, oldPublishStatus int, industrialActivityIt
|
|
|
updateParams["ChartPermissionIdDeputy"] = item.ChartPermissionIdDeputy
|
|
|
updateParams["CancelDeadline"] = item.CancelDeadline
|
|
|
updateParams["AreaType"] = item.AreaType
|
|
|
+ updateParams["MeetingId"] = item.MeetingId
|
|
|
+ updateParams["IsZoom"] = item.IsZoom
|
|
|
//修改活动信息
|
|
|
ptrStructOrTableName := "cygx_activity"
|
|
|
whereParam := map[string]interface{}{"activity_id": item.ActivityId}
|