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.
40 lines
1.6 KiB
40 lines
1.6 KiB
package apirouter
|
|
|
|
import (
|
|
"key_performance_indicators/apirouter/apishiyan"
|
|
"key_performance_indicators/apirouter/empower"
|
|
"key_performance_indicators/apirouter/v1/approvalsystem"
|
|
"key_performance_indicators/apirouter/v1/bookimg"
|
|
"key_performance_indicators/apirouter/v1/departmentseting"
|
|
"key_performance_indicators/apirouter/v1/empowerrouter"
|
|
honorsRoute "key_performance_indicators/apirouter/v1/honorsRoute"
|
|
"key_performance_indicators/apirouter/v1/newsclassrouter"
|
|
"key_performance_indicators/apirouter/v1/postseting"
|
|
"key_performance_indicators/apirouter/v1/statisticsrouter"
|
|
"key_performance_indicators/apirouter/v1/systempower"
|
|
"key_performance_indicators/apirouter/verifyLogin"
|
|
"key_performance_indicators/apirouter/wechaturl"
|
|
"key_performance_indicators/apirouter/workflowchart"
|
|
"key_performance_indicators/apirouter/workflowrouter"
|
|
)
|
|
|
|
// 路由结构
|
|
type RouterGroup struct {
|
|
EmpowerRouter empower.EmpowerApiRouter
|
|
VerifyLogin verifyLogin.ApiRouter
|
|
ShiyanApi apishiyan.ApiRouter
|
|
HonorsSouteRouter honorsRoute.ApiRouter
|
|
PostRouter postseting.ApiRouter
|
|
DepartmentRouter departmentseting.ApiRouter
|
|
BookImg bookimg.ApiRouter
|
|
SystemPowerRouter systempower.ApiRouter
|
|
Empowerouter empowerrouter.ApiRouter
|
|
WechatRouter wechaturl.ApiRouter
|
|
WorkFlowRouter workflowchart.ApiRouter
|
|
ExamineSystemApp approvalsystem.ApiRouter
|
|
MyWorkFlowRouter workflowrouter.ApiRouter
|
|
StatisticsApiRouter statisticsrouter.ApiRouter
|
|
NewsClassApiRouter newsclassrouter.ApiRouter
|
|
}
|
|
|
|
var RouterGroupEntry = new(RouterGroup)
|
|
|