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/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端 } var AppApiEntry = new(ApiEntry)