添加企业微信创建群数据

This commit is contained in:
邹宗楠
2022-05-25 16:44:59 +08:00
parent 8ba3d7b6f1
commit e535366e1b
5 changed files with 214 additions and 3 deletions

View File

@@ -0,0 +1,27 @@
package controllers
import (
"git.rosy.net.cn/jx-callback/business/enterprise_session"
"github.com/astaxie/beego/server/web"
)
type SessionController struct {
web.Controller
}
// 创建门店老板的会话群
// @Title 创建门店老板的会话群
// @Description 创建门店老板的会话群
// @Param token header string true "认证token"
// @Param storeId formData int true "门店id"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /CreateBossSession [post]
func (c *SessionController) CreateBossSession() {
c.callCreateBossSession(func(params *tSessionCreateBossSessionParams) (interface{}, string, error) {
session := enterprise_session.CreateSession{}
result, err := session.CreateBossToStaffAndCreateSession(params.Token, params.StoreId)
return result, "", err
})
}