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

28 lines
1.3 KiB

3 years ago
package statisticsroute
import (
v2 "github.com/flipped-aurora/gin-vue-admin/server/api/index"
"github.com/gin-gonic/gin"
)
// 统计
3 years ago
func (s *StatisticsRoute) InitRouter(Router *gin.RouterGroup) {
shiyanCodeRouter := Router.Group("ststic")
var authorityApi = v2.ApiGroupApp.StatisticsApi
{
shiyanCodeRouter.POST("", authorityApi.Index) // 入口
shiyanCodeRouter.POST("/", authorityApi.Index)
shiyanCodeRouter.GET("", authorityApi.Index)
shiyanCodeRouter.GET("/", authorityApi.Index)
shiyanCodeRouter.POST("planversiostatistics", authorityApi.PlanVersioStatistics) //方案数据表格统计
shiyanCodeRouter.POST("departperappdatastatistics", authorityApi.DepartPerAppDataStatistics) //绩效考核数据统计
shiyanCodeRouter.POST("getplanversionvalid", authorityApi.GetPlanVersionValid) //绩效考核数据统计(改版)
// shiyanCodeRouter.POST("departmenttranscript", authorityApi.DepartmentTranscript) //成绩表查询
// shiyanCodeRouter.POST("queryresults", authorityApi.Queryresults) //成绩表查询(新)
shiyanCodeRouter.POST("departmenttranscript", authorityApi.Queryresults) //成绩表查询
shiyanCodeRouter.POST("queryresults", authorityApi.DepartmentTranscript) //成绩表查询(新)
3 years ago
}
}