|
@@ -151,6 +151,7 @@ type ActivityDetail struct {
|
|
|
SiginupDeadline string `description:"报名截止时间"`
|
|
|
IsExternalLabel bool `description:"是否为外部资源"`
|
|
|
IsResearchPoints bool `description:"是否为研选扣点"`
|
|
|
+ CancelDeadline string `description:"取消报名截止时间"`
|
|
|
}
|
|
|
|
|
|
// 活动详情
|
|
@@ -227,12 +228,14 @@ type ActivityListResp struct {
|
|
|
IsExternalLabel bool `description:"是否为外部资源"`
|
|
|
IsResearchPoints bool `description:"是否为研选扣点"`
|
|
|
SiginupDeadline string `description:"报名截止时间"`
|
|
|
+ CancelDeadline string `description:"取消报名截止时间"`
|
|
|
}
|
|
|
|
|
|
type ActivityCheck struct {
|
|
|
CheckPermission bool `description:"权限是否通过校验"`
|
|
|
HasPermission int `description:"操作方式,1:有该行业权限,正常展示,2:无该行业权限,3:潜在客户,未提交过申请,4:潜在客户,已提交过申请"`
|
|
|
PopupMsg string `description:"权限弹窗信息"`
|
|
|
+ CancelPopupMsg string `description:"取消报名时间弹窗信息"`
|
|
|
SellerMobile string `description:"销售电话"`
|
|
|
SellerName string `description:"销售姓名"`
|
|
|
Mobile string `description:"手机号"`
|
|
@@ -428,6 +431,7 @@ func GetActivitySpecialSearcheList(condition string, pars []interface{}, conditi
|
|
|
art.city,
|
|
|
art.is_research_points,
|
|
|
art.siginup_deadline,
|
|
|
+ art.cancel_deadline,
|
|
|
art.activity_time
|
|
|
FROM
|
|
|
cygx_activity AS art
|
|
@@ -463,6 +467,7 @@ func GetActivitySpecialSearcheList(condition string, pars []interface{}, conditi
|
|
|
"",
|
|
|
"",
|
|
|
"",
|
|
|
+ "",
|
|
|
art.activity_time
|
|
|
FROM
|
|
|
cygx_activity_special AS art
|
|
@@ -559,6 +564,7 @@ func GetScheduleAndSpecilList(condition string, pars []interface{}, conditionSpe
|
|
|
art.is_yidong_conduct,
|
|
|
art.is_can_outbound_call,
|
|
|
art.is_research_points,
|
|
|
+ art.cancel_deadline,
|
|
|
art.host
|
|
|
FROM
|
|
|
cygx_activity AS art
|
|
@@ -596,6 +602,7 @@ func GetScheduleAndSpecilList(condition string, pars []interface{}, conditionSpe
|
|
|
"",
|
|
|
"",
|
|
|
"",
|
|
|
+ "",
|
|
|
art.host
|
|
|
FROM
|
|
|
cygx_activity_special AS art
|