This commit is contained in:
苏尹岚
2021-04-14 15:51:11 +08:00
parent c4d46326ad
commit 610b767814
10 changed files with 71 additions and 39 deletions

View File

@@ -551,6 +551,21 @@ func (c *JobController) TempJob() {
})
}
// @Title 查询联盟任务
// @Description 查询联盟任务
// @Param token header string true "认证token"
// @Param vendorID query int true "平台ID"
// @Param actType query int true "活动类型ID"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /GetUnionActList [get]
func (c *JobController) GetUnionActList() {
c.callGetUnionActList(func(params *tJobGetUnionActListParams) (retVal interface{}, errCode string, err error) {
retVal, err = cms.GetUnionActList(params.Ctx, params.VendorID, params.ActType)
return retVal, "", err
})
}
// @Title 分享联盟链接
// @Description 分享联盟链接
// @Param token header string true "认证token"