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.

25 lines
1.1 KiB

package version1
import (
"key_performance_indicators/api/version1/bookimg"
"key_performance_indicators/api/version1/departmentseting/departmentpc"
"key_performance_indicators/api/version1/departmentseting/departmentweb"
"key_performance_indicators/api/version1/empower"
"key_performance_indicators/api/version1/honoraryArchives"
"key_performance_indicators/api/version1/jurisdiction/jurisdictionpc"
"key_performance_indicators/api/version1/postseting/postpc"
"key_performance_indicators/api/version1/postseting/postweb"
)
type ApiEntry struct {
HonorsApi honoraryArchives.ApiMethod //荣誉
PostPcApi postpc.ApiMethod //岗位pc端
PostWebApi postweb.ApiMethod //岗位web端
DeparmentPcApi departmentpc.ApiMethod //部门PC端
DeparmentWebApi departmentweb.ApiMethod //部门web端
BookImg bookimg.ApiMethod //图文信息管理
JurisdictionpcApi jurisdictionpc.ApiMethod //权限模块PC端
EmpowerApi empower.ApiMethod //系统授权
}
var AppApiEntry = new(ApiEntry)