dddd
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.

25 lines
981 B

package statisticsroute
import (
v2 "github.com/flipped-aurora/gin-vue-admin/server/api/index"
"github.com/gin-gonic/gin"
)
//统计
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) //绩效考核数据统计(改版)
4 years ago
shiyanCodeRouter.POST("departmenttranscript", authorityApi.DepartmentTranscript) //成绩表查询
}
}