|
@@ -155,19 +155,19 @@ type ActivityListResp struct {
|
|
|
DistinguishedGuest string `description:"嘉宾"`
|
|
|
Host string `description:"主持人"`
|
|
|
Speaker string `description:"主讲人"`
|
|
|
- MainlandTell string `description:"大陆拨入号"`
|
|
|
- HongKongTell string `description:"香港拨入号"`
|
|
|
- TaiwanTell string `description:"台湾拨入号"`
|
|
|
- AmericaTell string `description:"美国拨入号"`
|
|
|
+ MainlandTell string `description:"大陆拨入号" json:"-"`
|
|
|
+ HongKongTell string `description:"香港拨入号" json:"-"`
|
|
|
+ TaiwanTell string `description:"台湾拨入号" json:"-"`
|
|
|
+ AmericaTell string `description:"美国拨入号" json:"-"`
|
|
|
ParticipationCode string `description:"参会密码"`
|
|
|
Theme string `description:"主题"`
|
|
|
Expert string `description:"专家"`
|
|
|
ActivityName string `description:"活动名称"`
|
|
|
OnlineParticipation string `description:"网络参会"`
|
|
|
- ReportLink string `description:"报告链接"`
|
|
|
+ ReportLink string `description:"报告链接" json:"-"`
|
|
|
City string `description:"城市"`
|
|
|
- Address string `description:"活动地址"`
|
|
|
- Highlights string `description:"活动亮点"`
|
|
|
+ Address string `description:"活动地址" json:"-"`
|
|
|
+ Highlights string `description:"活动亮点" json:"-"`
|
|
|
Remarks string `description:"备注"`
|
|
|
IsSignup int `description:"是否已报名 1是 ,0 否"`
|
|
|
SignupNum int `description:"已报名人数"`
|
|
@@ -198,6 +198,7 @@ type ActivityListResp struct {
|
|
|
ArticleList []*ActivityArticleResp
|
|
|
Listndustrial []*IndustrialManagementRep `description:"活动关联的产业信息"`
|
|
|
AuthInfo *UserPermissionAuthInfo `description:"用户查看视频的权限"`
|
|
|
+ Explain string `description:"活动右上角提示"`
|
|
|
}
|
|
|
|
|
|
type ActivityArticleResp struct {
|
|
@@ -405,7 +406,6 @@ func GetActivitySpecialSearcheList(condition string, pars []interface{}, conditi
|
|
|
return
|
|
|
}
|
|
|
|
|
|
-
|
|
|
//获取我的日程数量
|
|
|
func GetScheduleCount(condition string, uid int) (count int, err error) {
|
|
|
o := orm.NewOrm()
|