绩效考核
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
553 B

3 years ago
package wechatapp
import (
3 years ago
"gin_server_admin/api/wechatapp"
3 years ago
"github.com/gin-gonic/gin"
)
3 years ago
// 向企业微信发送信息路由
3 years ago
type SendMsgWeCahtApi struct{}
func (g *SendMsgWeCahtApi) InitGroupRouter(Router *gin.RouterGroup) {
groupCodeRouter := Router.Group("wechatsendmsg")
var authorityApi = wechatapp.ApiGroupApp.WorkWeChatSendMsgApi.SendMsgApi
{
groupCodeRouter.POST("", authorityApi.Index)
groupCodeRouter.POST("/", authorityApi.Index)
groupCodeRouter.GET("", authorityApi.Index)
groupCodeRouter.GET("/", authorityApi.Index)
}
}