├── .gitignore ├── README.md ├── TianCheng.SystemCommon.sln ├── samples └── SamplesWebApi │ ├── Controllers │ └── ValuesController.cs │ ├── Program.cs │ ├── Properties │ ├── PublishProfiles │ │ └── CustomProfile.pubxml │ └── launchSettings.json │ ├── SamplesWebApi.csproj │ ├── Service │ ├── DepartmentServiceOptionExt.cs │ ├── DepartmentServiceTestExt.cs │ ├── EmployeeServiceOptionExt.cs │ ├── InitServiceExt.cs │ ├── MenuServiceOptionExt.cs │ └── OnlineEmployeeService.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json └── src ├── Controller ├── Area │ └── AreaController.cs ├── Auth │ ├── AuthController.cs │ └── DepartmentIpController.cs ├── AutoRun │ └── TimerRecordController.cs ├── Common │ ├── DataImportEmployeesController.cs │ ├── DepartmentController.cs │ ├── EmployeeController.cs │ ├── EmployeeImageController.cs │ ├── FunctionController.cs │ ├── MenuController.cs │ ├── RoleController.cs │ └── SystemController.cs ├── DataImport │ └── DataImportController.cs ├── Industries │ ├── IndustryCategoryController.cs │ └── IndustryController.cs └── Version │ └── SystemVersionController.cs ├── DAL ├── Area │ └── AreaDAL.cs ├── AutoRun │ └── TimerRecordDAL.cs ├── Common │ ├── DataImport │ │ └── EmployeesImportDetailDAL.cs │ ├── DepartmentDAL.cs │ ├── DepartmentIpDAL.cs │ ├── EmployeeDAL.cs │ ├── FunctionDAL.cs │ ├── LoginHistoryDAL.cs │ ├── MenuMainDAL.cs │ └── RoleDAL.cs ├── DataImport │ ├── DataImportDetailDAL.cs │ └── DataImportIndexDAL.cs ├── Industries │ ├── IndustryCategoryDAL.cs │ └── IndustryDAL.cs └── Version │ └── SystemVersionDAL.cs ├── Model ├── Area │ ├── AmapDistricts.cs │ ├── AreaInfo.cs │ ├── AreaQuery.cs │ ├── AreaTree.cs │ ├── AreaType.cs │ └── AreaView.cs ├── AutoRun │ ├── Query │ │ └── TimerRecordQuery.cs │ ├── TimerRecordInfo.cs │ └── View │ │ └── TimerRecordView.cs ├── Common │ ├── AuthSettingInfo.cs │ ├── DataImport │ │ └── EmployeesImportDetail.cs │ ├── DepartmentInfo.cs │ ├── DepartmentIpInfo.cs │ ├── EmployeeInfo.cs │ ├── Enum │ │ ├── LoginVerifierType.cs │ │ ├── UserGender.cs │ │ └── UserState.cs │ ├── FunctionGroupInfo.cs │ ├── FunctionInfo.cs │ ├── FunctionModuleConfig.cs │ ├── FunctionModuleInfo.cs │ ├── LoginHistoryInfo.cs │ ├── MenuMainInfo.cs │ ├── MenuSubInfo.cs │ ├── MenuType.cs │ ├── Query │ │ ├── DepartmentQuery.cs │ │ ├── EmployeeQuery.cs │ │ ├── FunctionQuery.cs │ │ ├── LoginHistoryQuery.cs │ │ ├── MenuQuery.cs │ │ └── RoleQuery.cs │ ├── RoleInfo.cs │ └── ViewModel │ │ ├── BaseEmployeeView.cs │ │ ├── DepartmentView.cs │ │ ├── EmployeeGroupByDepartment.cs │ │ ├── EmployeeSelectView.cs │ │ ├── EmployeeView.cs │ │ ├── FunctionGroupView.cs │ │ ├── FunctionModuleView.cs │ │ ├── FunctionView.cs │ │ ├── LoginHistoryView.cs │ │ ├── LoginView.cs │ │ ├── LogonPowerView.cs │ │ ├── MenuMainView.cs │ │ ├── MenuSubView.cs │ │ ├── ParentDepartment.cs │ │ ├── RoleSimpleView.cs │ │ ├── RoleView.cs │ │ ├── SetPropertyView.cs │ │ └── UpdatePasswordView.cs ├── DataImport │ ├── DataImportDetailInfo.cs │ ├── DataImportDetailResult.cs │ ├── DataImportIndexInfo.cs │ ├── DataImportIndexView.cs │ ├── ImportState.cs │ └── Profile │ │ └── DataImportProfile.cs ├── Industries │ ├── IndustryCategoryInfo.cs │ ├── IndustryCategoryQuery.cs │ ├── IndustryCategoryView.cs │ ├── IndustryInfo.cs │ ├── IndustryQuery.cs │ └── IndustryView.cs ├── Profile │ └── SystemCommonModelProfile.cs └── Version │ └── SystemVersion.cs ├── Services ├── Area │ └── AreaService.cs ├── Auth │ ├── AuthService.cs │ ├── AuthServiceExt.cs │ ├── AuthServiceOption.cs │ ├── AuthVisitorService.cs │ ├── DepartmentIpService.cs │ ├── LoginResult.cs │ └── LoginView.cs ├── AutoRun │ └── TimerRecordService.cs ├── Common │ ├── DataImport │ │ ├── FilePathServiceExt.cs │ │ └── ImportEmployeesService.cs │ ├── DepartmentService.cs │ ├── DepartmentServiceExt.cs │ ├── EmployeeService.cs │ ├── FunctionService.cs │ ├── LoginHistoryService.cs │ ├── MenuService.cs │ ├── MenuServiceOption.cs │ ├── RoleService.cs │ ├── RoleServiceExt.cs │ └── RoleServiceExtFun.cs ├── CommonExt │ ├── TianChengCommonConfigureExt.cs │ └── TianChengCommonServicesExt.cs ├── DataImport │ └── DataImportService.cs ├── Industries │ ├── IndustryCategoryService.cs │ └── IndustryService.cs └── Version │ └── SystemVersionService.cs └── TianCheng.SystemCommon.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/README.md -------------------------------------------------------------------------------- /TianCheng.SystemCommon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/TianCheng.SystemCommon.sln -------------------------------------------------------------------------------- /samples/SamplesWebApi/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/samples/SamplesWebApi/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /samples/SamplesWebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/samples/SamplesWebApi/Program.cs -------------------------------------------------------------------------------- /samples/SamplesWebApi/Properties/PublishProfiles/CustomProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/samples/SamplesWebApi/Properties/PublishProfiles/CustomProfile.pubxml -------------------------------------------------------------------------------- /samples/SamplesWebApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/samples/SamplesWebApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/SamplesWebApi/SamplesWebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/samples/SamplesWebApi/SamplesWebApi.csproj -------------------------------------------------------------------------------- /samples/SamplesWebApi/Service/DepartmentServiceOptionExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/samples/SamplesWebApi/Service/DepartmentServiceOptionExt.cs -------------------------------------------------------------------------------- /samples/SamplesWebApi/Service/DepartmentServiceTestExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/samples/SamplesWebApi/Service/DepartmentServiceTestExt.cs -------------------------------------------------------------------------------- /samples/SamplesWebApi/Service/EmployeeServiceOptionExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/samples/SamplesWebApi/Service/EmployeeServiceOptionExt.cs -------------------------------------------------------------------------------- /samples/SamplesWebApi/Service/InitServiceExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/samples/SamplesWebApi/Service/InitServiceExt.cs -------------------------------------------------------------------------------- /samples/SamplesWebApi/Service/MenuServiceOptionExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/samples/SamplesWebApi/Service/MenuServiceOptionExt.cs -------------------------------------------------------------------------------- /samples/SamplesWebApi/Service/OnlineEmployeeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/samples/SamplesWebApi/Service/OnlineEmployeeService.cs -------------------------------------------------------------------------------- /samples/SamplesWebApi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/samples/SamplesWebApi/Startup.cs -------------------------------------------------------------------------------- /samples/SamplesWebApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/samples/SamplesWebApi/appsettings.Development.json -------------------------------------------------------------------------------- /samples/SamplesWebApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/samples/SamplesWebApi/appsettings.json -------------------------------------------------------------------------------- /src/Controller/Area/AreaController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Controller/Area/AreaController.cs -------------------------------------------------------------------------------- /src/Controller/Auth/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Controller/Auth/AuthController.cs -------------------------------------------------------------------------------- /src/Controller/Auth/DepartmentIpController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Controller/Auth/DepartmentIpController.cs -------------------------------------------------------------------------------- /src/Controller/AutoRun/TimerRecordController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Controller/AutoRun/TimerRecordController.cs -------------------------------------------------------------------------------- /src/Controller/Common/DataImportEmployeesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Controller/Common/DataImportEmployeesController.cs -------------------------------------------------------------------------------- /src/Controller/Common/DepartmentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Controller/Common/DepartmentController.cs -------------------------------------------------------------------------------- /src/Controller/Common/EmployeeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Controller/Common/EmployeeController.cs -------------------------------------------------------------------------------- /src/Controller/Common/EmployeeImageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Controller/Common/EmployeeImageController.cs -------------------------------------------------------------------------------- /src/Controller/Common/FunctionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Controller/Common/FunctionController.cs -------------------------------------------------------------------------------- /src/Controller/Common/MenuController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Controller/Common/MenuController.cs -------------------------------------------------------------------------------- /src/Controller/Common/RoleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Controller/Common/RoleController.cs -------------------------------------------------------------------------------- /src/Controller/Common/SystemController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Controller/Common/SystemController.cs -------------------------------------------------------------------------------- /src/Controller/DataImport/DataImportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Controller/DataImport/DataImportController.cs -------------------------------------------------------------------------------- /src/Controller/Industries/IndustryCategoryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Controller/Industries/IndustryCategoryController.cs -------------------------------------------------------------------------------- /src/Controller/Industries/IndustryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Controller/Industries/IndustryController.cs -------------------------------------------------------------------------------- /src/Controller/Version/SystemVersionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Controller/Version/SystemVersionController.cs -------------------------------------------------------------------------------- /src/DAL/Area/AreaDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/DAL/Area/AreaDAL.cs -------------------------------------------------------------------------------- /src/DAL/AutoRun/TimerRecordDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/DAL/AutoRun/TimerRecordDAL.cs -------------------------------------------------------------------------------- /src/DAL/Common/DataImport/EmployeesImportDetailDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/DAL/Common/DataImport/EmployeesImportDetailDAL.cs -------------------------------------------------------------------------------- /src/DAL/Common/DepartmentDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/DAL/Common/DepartmentDAL.cs -------------------------------------------------------------------------------- /src/DAL/Common/DepartmentIpDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/DAL/Common/DepartmentIpDAL.cs -------------------------------------------------------------------------------- /src/DAL/Common/EmployeeDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/DAL/Common/EmployeeDAL.cs -------------------------------------------------------------------------------- /src/DAL/Common/FunctionDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/DAL/Common/FunctionDAL.cs -------------------------------------------------------------------------------- /src/DAL/Common/LoginHistoryDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/DAL/Common/LoginHistoryDAL.cs -------------------------------------------------------------------------------- /src/DAL/Common/MenuMainDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/DAL/Common/MenuMainDAL.cs -------------------------------------------------------------------------------- /src/DAL/Common/RoleDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/DAL/Common/RoleDAL.cs -------------------------------------------------------------------------------- /src/DAL/DataImport/DataImportDetailDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/DAL/DataImport/DataImportDetailDAL.cs -------------------------------------------------------------------------------- /src/DAL/DataImport/DataImportIndexDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/DAL/DataImport/DataImportIndexDAL.cs -------------------------------------------------------------------------------- /src/DAL/Industries/IndustryCategoryDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/DAL/Industries/IndustryCategoryDAL.cs -------------------------------------------------------------------------------- /src/DAL/Industries/IndustryDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/DAL/Industries/IndustryDAL.cs -------------------------------------------------------------------------------- /src/DAL/Version/SystemVersionDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/DAL/Version/SystemVersionDAL.cs -------------------------------------------------------------------------------- /src/Model/Area/AmapDistricts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Area/AmapDistricts.cs -------------------------------------------------------------------------------- /src/Model/Area/AreaInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Area/AreaInfo.cs -------------------------------------------------------------------------------- /src/Model/Area/AreaQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Area/AreaQuery.cs -------------------------------------------------------------------------------- /src/Model/Area/AreaTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Area/AreaTree.cs -------------------------------------------------------------------------------- /src/Model/Area/AreaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Area/AreaType.cs -------------------------------------------------------------------------------- /src/Model/Area/AreaView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Area/AreaView.cs -------------------------------------------------------------------------------- /src/Model/AutoRun/Query/TimerRecordQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/AutoRun/Query/TimerRecordQuery.cs -------------------------------------------------------------------------------- /src/Model/AutoRun/TimerRecordInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/AutoRun/TimerRecordInfo.cs -------------------------------------------------------------------------------- /src/Model/AutoRun/View/TimerRecordView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/AutoRun/View/TimerRecordView.cs -------------------------------------------------------------------------------- /src/Model/Common/AuthSettingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/AuthSettingInfo.cs -------------------------------------------------------------------------------- /src/Model/Common/DataImport/EmployeesImportDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/DataImport/EmployeesImportDetail.cs -------------------------------------------------------------------------------- /src/Model/Common/DepartmentInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/DepartmentInfo.cs -------------------------------------------------------------------------------- /src/Model/Common/DepartmentIpInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/DepartmentIpInfo.cs -------------------------------------------------------------------------------- /src/Model/Common/EmployeeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/EmployeeInfo.cs -------------------------------------------------------------------------------- /src/Model/Common/Enum/LoginVerifierType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/Enum/LoginVerifierType.cs -------------------------------------------------------------------------------- /src/Model/Common/Enum/UserGender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/Enum/UserGender.cs -------------------------------------------------------------------------------- /src/Model/Common/Enum/UserState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/Enum/UserState.cs -------------------------------------------------------------------------------- /src/Model/Common/FunctionGroupInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/FunctionGroupInfo.cs -------------------------------------------------------------------------------- /src/Model/Common/FunctionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/FunctionInfo.cs -------------------------------------------------------------------------------- /src/Model/Common/FunctionModuleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/FunctionModuleConfig.cs -------------------------------------------------------------------------------- /src/Model/Common/FunctionModuleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/FunctionModuleInfo.cs -------------------------------------------------------------------------------- /src/Model/Common/LoginHistoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/LoginHistoryInfo.cs -------------------------------------------------------------------------------- /src/Model/Common/MenuMainInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/MenuMainInfo.cs -------------------------------------------------------------------------------- /src/Model/Common/MenuSubInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/MenuSubInfo.cs -------------------------------------------------------------------------------- /src/Model/Common/MenuType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/MenuType.cs -------------------------------------------------------------------------------- /src/Model/Common/Query/DepartmentQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/Query/DepartmentQuery.cs -------------------------------------------------------------------------------- /src/Model/Common/Query/EmployeeQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/Query/EmployeeQuery.cs -------------------------------------------------------------------------------- /src/Model/Common/Query/FunctionQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/Query/FunctionQuery.cs -------------------------------------------------------------------------------- /src/Model/Common/Query/LoginHistoryQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/Query/LoginHistoryQuery.cs -------------------------------------------------------------------------------- /src/Model/Common/Query/MenuQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/Query/MenuQuery.cs -------------------------------------------------------------------------------- /src/Model/Common/Query/RoleQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/Query/RoleQuery.cs -------------------------------------------------------------------------------- /src/Model/Common/RoleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/RoleInfo.cs -------------------------------------------------------------------------------- /src/Model/Common/ViewModel/BaseEmployeeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/ViewModel/BaseEmployeeView.cs -------------------------------------------------------------------------------- /src/Model/Common/ViewModel/DepartmentView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/ViewModel/DepartmentView.cs -------------------------------------------------------------------------------- /src/Model/Common/ViewModel/EmployeeGroupByDepartment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/ViewModel/EmployeeGroupByDepartment.cs -------------------------------------------------------------------------------- /src/Model/Common/ViewModel/EmployeeSelectView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/ViewModel/EmployeeSelectView.cs -------------------------------------------------------------------------------- /src/Model/Common/ViewModel/EmployeeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/ViewModel/EmployeeView.cs -------------------------------------------------------------------------------- /src/Model/Common/ViewModel/FunctionGroupView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/ViewModel/FunctionGroupView.cs -------------------------------------------------------------------------------- /src/Model/Common/ViewModel/FunctionModuleView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/ViewModel/FunctionModuleView.cs -------------------------------------------------------------------------------- /src/Model/Common/ViewModel/FunctionView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/ViewModel/FunctionView.cs -------------------------------------------------------------------------------- /src/Model/Common/ViewModel/LoginHistoryView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/ViewModel/LoginHistoryView.cs -------------------------------------------------------------------------------- /src/Model/Common/ViewModel/LoginView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/ViewModel/LoginView.cs -------------------------------------------------------------------------------- /src/Model/Common/ViewModel/LogonPowerView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/ViewModel/LogonPowerView.cs -------------------------------------------------------------------------------- /src/Model/Common/ViewModel/MenuMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/ViewModel/MenuMainView.cs -------------------------------------------------------------------------------- /src/Model/Common/ViewModel/MenuSubView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/ViewModel/MenuSubView.cs -------------------------------------------------------------------------------- /src/Model/Common/ViewModel/ParentDepartment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/ViewModel/ParentDepartment.cs -------------------------------------------------------------------------------- /src/Model/Common/ViewModel/RoleSimpleView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/ViewModel/RoleSimpleView.cs -------------------------------------------------------------------------------- /src/Model/Common/ViewModel/RoleView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/ViewModel/RoleView.cs -------------------------------------------------------------------------------- /src/Model/Common/ViewModel/SetPropertyView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/ViewModel/SetPropertyView.cs -------------------------------------------------------------------------------- /src/Model/Common/ViewModel/UpdatePasswordView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Common/ViewModel/UpdatePasswordView.cs -------------------------------------------------------------------------------- /src/Model/DataImport/DataImportDetailInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/DataImport/DataImportDetailInfo.cs -------------------------------------------------------------------------------- /src/Model/DataImport/DataImportDetailResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/DataImport/DataImportDetailResult.cs -------------------------------------------------------------------------------- /src/Model/DataImport/DataImportIndexInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/DataImport/DataImportIndexInfo.cs -------------------------------------------------------------------------------- /src/Model/DataImport/DataImportIndexView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/DataImport/DataImportIndexView.cs -------------------------------------------------------------------------------- /src/Model/DataImport/ImportState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/DataImport/ImportState.cs -------------------------------------------------------------------------------- /src/Model/DataImport/Profile/DataImportProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/DataImport/Profile/DataImportProfile.cs -------------------------------------------------------------------------------- /src/Model/Industries/IndustryCategoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Industries/IndustryCategoryInfo.cs -------------------------------------------------------------------------------- /src/Model/Industries/IndustryCategoryQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Industries/IndustryCategoryQuery.cs -------------------------------------------------------------------------------- /src/Model/Industries/IndustryCategoryView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Industries/IndustryCategoryView.cs -------------------------------------------------------------------------------- /src/Model/Industries/IndustryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Industries/IndustryInfo.cs -------------------------------------------------------------------------------- /src/Model/Industries/IndustryQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Industries/IndustryQuery.cs -------------------------------------------------------------------------------- /src/Model/Industries/IndustryView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Industries/IndustryView.cs -------------------------------------------------------------------------------- /src/Model/Profile/SystemCommonModelProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Profile/SystemCommonModelProfile.cs -------------------------------------------------------------------------------- /src/Model/Version/SystemVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Model/Version/SystemVersion.cs -------------------------------------------------------------------------------- /src/Services/Area/AreaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Area/AreaService.cs -------------------------------------------------------------------------------- /src/Services/Auth/AuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Auth/AuthService.cs -------------------------------------------------------------------------------- /src/Services/Auth/AuthServiceExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Auth/AuthServiceExt.cs -------------------------------------------------------------------------------- /src/Services/Auth/AuthServiceOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Auth/AuthServiceOption.cs -------------------------------------------------------------------------------- /src/Services/Auth/AuthVisitorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Auth/AuthVisitorService.cs -------------------------------------------------------------------------------- /src/Services/Auth/DepartmentIpService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Auth/DepartmentIpService.cs -------------------------------------------------------------------------------- /src/Services/Auth/LoginResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Auth/LoginResult.cs -------------------------------------------------------------------------------- /src/Services/Auth/LoginView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Auth/LoginView.cs -------------------------------------------------------------------------------- /src/Services/AutoRun/TimerRecordService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/AutoRun/TimerRecordService.cs -------------------------------------------------------------------------------- /src/Services/Common/DataImport/FilePathServiceExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Common/DataImport/FilePathServiceExt.cs -------------------------------------------------------------------------------- /src/Services/Common/DataImport/ImportEmployeesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Common/DataImport/ImportEmployeesService.cs -------------------------------------------------------------------------------- /src/Services/Common/DepartmentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Common/DepartmentService.cs -------------------------------------------------------------------------------- /src/Services/Common/DepartmentServiceExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Common/DepartmentServiceExt.cs -------------------------------------------------------------------------------- /src/Services/Common/EmployeeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Common/EmployeeService.cs -------------------------------------------------------------------------------- /src/Services/Common/FunctionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Common/FunctionService.cs -------------------------------------------------------------------------------- /src/Services/Common/LoginHistoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Common/LoginHistoryService.cs -------------------------------------------------------------------------------- /src/Services/Common/MenuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Common/MenuService.cs -------------------------------------------------------------------------------- /src/Services/Common/MenuServiceOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Common/MenuServiceOption.cs -------------------------------------------------------------------------------- /src/Services/Common/RoleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Common/RoleService.cs -------------------------------------------------------------------------------- /src/Services/Common/RoleServiceExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Common/RoleServiceExt.cs -------------------------------------------------------------------------------- /src/Services/Common/RoleServiceExtFun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Common/RoleServiceExtFun.cs -------------------------------------------------------------------------------- /src/Services/CommonExt/TianChengCommonConfigureExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/CommonExt/TianChengCommonConfigureExt.cs -------------------------------------------------------------------------------- /src/Services/CommonExt/TianChengCommonServicesExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/CommonExt/TianChengCommonServicesExt.cs -------------------------------------------------------------------------------- /src/Services/DataImport/DataImportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/DataImport/DataImportService.cs -------------------------------------------------------------------------------- /src/Services/Industries/IndustryCategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Industries/IndustryCategoryService.cs -------------------------------------------------------------------------------- /src/Services/Industries/IndustryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Industries/IndustryService.cs -------------------------------------------------------------------------------- /src/Services/Version/SystemVersionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/Services/Version/SystemVersionService.cs -------------------------------------------------------------------------------- /src/TianCheng.SystemCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengkkll/TianCheng.SystemCommon/HEAD/src/TianCheng.SystemCommon.csproj --------------------------------------------------------------------------------