mt member

This commit is contained in:
苏尹岚
2020-10-20 15:01:34 +08:00
parent d20d77c8ec
commit 3426100635
4 changed files with 41 additions and 0 deletions

View File

@@ -186,3 +186,15 @@ func (c *JobController) AuditJob() {
return retVal, "", err
})
}
// @Title 导入美团会员
// @Description 导入美团会员
// @Param token header string true "认证token"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /ImprotMtMembers [post]
func (c *JobController) ImprotMtMembers() {
c.callImprotMtMembers(func(params *tJobImprotMtMembersParams) (retVal interface{}, errCode string, err error) {
return retVal, "", err
})
}