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

20 lines
472 B

package approvalsystem
import (
"key_performance_indicators/api/version1"
"github.com/gin-gonic/gin"
)
// 岗位考核审批路由
func (a *ApiRouter) RouterGroup(router *gin.RouterGroup) {
apiRouter := router.Group("examine")
var apiFunc = version1.AppApiEntry.SystemAppExamine
{
apiRouter.GET("", apiFunc.Index) //入口
apiRouter.POST("", apiFunc.Index) //入口
apiRouter.POST("postnatureappflow", apiFunc.PostNatureAppFlow) //岗位定性审批
}
}