绩效考核
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.

23 lines
616 B

3 years ago
package examapprove
import (
3 years ago
v2 "gin_server_admin/api/index"
3 years ago
"github.com/gin-gonic/gin"
)
type ExamApproveRouter struct{}
3 years ago
// 审批
3 years ago
func (s *ExamApproveRouter) InitShiyanRouter(Router *gin.RouterGroup) {
shiyanCodeRouter := Router.Group("examine")
var authorityApi = v2.ApiGroupApp.ExamApproveApi.ExamineApproveApi
{
shiyanCodeRouter.POST("", authorityApi.Index) // 入口
shiyanCodeRouter.POST("/", authorityApi.Index)
shiyanCodeRouter.GET("", authorityApi.Index)
shiyanCodeRouter.GET("/", authorityApi.Index)
shiyanCodeRouter.POST("getconfig", authorityApi.GetConfing) //获取配置参数
}
}