gitextract_4k9f2lks/ ├── LICENSE ├── README.md ├── composer.json └── src/ ├── Install.php ├── orm/ │ ├── eloquent/ │ │ └── app/ │ │ ├── logic/ │ │ │ ├── system/ │ │ │ │ ├── DatabaseLogic.php │ │ │ │ ├── SystemAttachmentLogic.php │ │ │ │ ├── SystemCategoryLogic.php │ │ │ │ ├── SystemConfigGroupLogic.php │ │ │ │ ├── SystemConfigLogic.php │ │ │ │ ├── SystemDeptLogic.php │ │ │ │ ├── SystemDictDataLogic.php │ │ │ │ ├── SystemDictTypeLogic.php │ │ │ │ ├── SystemLoginLogLogic.php │ │ │ │ ├── SystemMailLogic.php │ │ │ │ ├── SystemMenuLogic.php │ │ │ │ ├── SystemOperLogLogic.php │ │ │ │ ├── SystemPostLogic.php │ │ │ │ ├── SystemRoleLogic.php │ │ │ │ └── SystemUserLogic.php │ │ │ └── tool/ │ │ │ ├── CrontabLogLogic.php │ │ │ ├── CrontabLogic.php │ │ │ ├── GenerateColumnsLogic.php │ │ │ └── GenerateTablesLogic.php │ │ └── model/ │ │ ├── system/ │ │ │ ├── SystemAttachment.php │ │ │ ├── SystemCategory.php │ │ │ ├── SystemConfig.php │ │ │ ├── SystemConfigGroup.php │ │ │ ├── SystemDept.php │ │ │ ├── SystemDictData.php │ │ │ ├── SystemDictType.php │ │ │ ├── SystemLoginLog.php │ │ │ ├── SystemMail.php │ │ │ ├── SystemMenu.php │ │ │ ├── SystemOperLog.php │ │ │ ├── SystemPost.php │ │ │ ├── SystemRole.php │ │ │ ├── SystemRoleDept.php │ │ │ ├── SystemRoleMenu.php │ │ │ ├── SystemUser.php │ │ │ ├── SystemUserPost.php │ │ │ └── SystemUserRole.php │ │ └── tool/ │ │ ├── Crontab.php │ │ ├── CrontabLog.php │ │ ├── GenerateColumns.php │ │ └── GenerateTables.php │ └── think/ │ └── app/ │ ├── logic/ │ │ ├── system/ │ │ │ ├── DatabaseLogic.php │ │ │ ├── SystemAttachmentLogic.php │ │ │ ├── SystemCategoryLogic.php │ │ │ ├── SystemConfigGroupLogic.php │ │ │ ├── SystemConfigLogic.php │ │ │ ├── SystemDeptLogic.php │ │ │ ├── SystemDictDataLogic.php │ │ │ ├── SystemDictTypeLogic.php │ │ │ ├── SystemLoginLogLogic.php │ │ │ ├── SystemMailLogic.php │ │ │ ├── SystemMenuLogic.php │ │ │ ├── SystemOperLogLogic.php │ │ │ ├── SystemPostLogic.php │ │ │ ├── SystemRoleLogic.php │ │ │ └── SystemUserLogic.php │ │ └── tool/ │ │ ├── CrontabLogLogic.php │ │ ├── CrontabLogic.php │ │ ├── GenerateColumnsLogic.php │ │ └── GenerateTablesLogic.php │ └── model/ │ ├── system/ │ │ ├── SystemAttachment.php │ │ ├── SystemCategory.php │ │ ├── SystemConfig.php │ │ ├── SystemConfigGroup.php │ │ ├── SystemDept.php │ │ ├── SystemDictData.php │ │ ├── SystemDictType.php │ │ ├── SystemLoginLog.php │ │ ├── SystemMail.php │ │ ├── SystemMenu.php │ │ ├── SystemOperLog.php │ │ ├── SystemPost.php │ │ ├── SystemRole.php │ │ ├── SystemRoleDept.php │ │ ├── SystemRoleMenu.php │ │ ├── SystemUser.php │ │ ├── SystemUserPost.php │ │ └── SystemUserRole.php │ └── tool/ │ ├── Crontab.php │ ├── CrontabLog.php │ ├── GenerateColumns.php │ └── GenerateTables.php └── plugin/ └── saiadmin/ ├── app/ │ ├── cache/ │ │ ├── ConfigCache.php │ │ ├── DictCache.php │ │ ├── ReflectionCache.php │ │ ├── UserAuthCache.php │ │ ├── UserInfoCache.php │ │ └── UserMenuCache.php │ ├── controller/ │ │ ├── InstallController.php │ │ ├── LoginController.php │ │ ├── SystemController.php │ │ ├── system/ │ │ │ ├── DataBaseController.php │ │ │ ├── SystemAttachmentController.php │ │ │ ├── SystemCategoryController.php │ │ │ ├── SystemConfigController.php │ │ │ ├── SystemConfigGroupController.php │ │ │ ├── SystemDeptController.php │ │ │ ├── SystemDictDataController.php │ │ │ ├── SystemDictTypeController.php │ │ │ ├── SystemLogController.php │ │ │ ├── SystemMailController.php │ │ │ ├── SystemMenuController.php │ │ │ ├── SystemPostController.php │ │ │ ├── SystemRoleController.php │ │ │ ├── SystemServerController.php │ │ │ └── SystemUserController.php │ │ └── tool/ │ │ ├── CrontabController.php │ │ └── GenerateTablesController.php │ ├── event/ │ │ └── SystemUser.php │ ├── exception/ │ │ └── Handler.php │ ├── functions.php │ ├── logic/ │ │ ├── system/ │ │ │ ├── DatabaseLogic.php │ │ │ ├── SystemAttachmentLogic.php │ │ │ ├── SystemCategoryLogic.php │ │ │ ├── SystemConfigGroupLogic.php │ │ │ ├── SystemConfigLogic.php │ │ │ ├── SystemDeptLogic.php │ │ │ ├── SystemDictDataLogic.php │ │ │ ├── SystemDictTypeLogic.php │ │ │ ├── SystemLoginLogLogic.php │ │ │ ├── SystemMailLogic.php │ │ │ ├── SystemMenuLogic.php │ │ │ ├── SystemOperLogLogic.php │ │ │ ├── SystemPostLogic.php │ │ │ ├── SystemRoleLogic.php │ │ │ └── SystemUserLogic.php │ │ └── tool/ │ │ ├── CrontabLogLogic.php │ │ ├── CrontabLogic.php │ │ ├── GenerateColumnsLogic.php │ │ └── GenerateTablesLogic.php │ ├── middleware/ │ │ ├── CheckAuth.php │ │ ├── CheckLogin.php │ │ ├── CrossDomain.php │ │ └── SystemLog.php │ ├── model/ │ │ ├── system/ │ │ │ ├── SystemAttachment.php │ │ │ ├── SystemCategory.php │ │ │ ├── SystemConfig.php │ │ │ ├── SystemConfigGroup.php │ │ │ ├── SystemDept.php │ │ │ ├── SystemDictData.php │ │ │ ├── SystemDictType.php │ │ │ ├── SystemLoginLog.php │ │ │ ├── SystemMail.php │ │ │ ├── SystemMenu.php │ │ │ ├── SystemOperLog.php │ │ │ ├── SystemPost.php │ │ │ ├── SystemRole.php │ │ │ ├── SystemRoleDept.php │ │ │ ├── SystemRoleMenu.php │ │ │ ├── SystemUser.php │ │ │ ├── SystemUserPost.php │ │ │ └── SystemUserRole.php │ │ └── tool/ │ │ ├── Crontab.php │ │ ├── CrontabLog.php │ │ ├── GenerateColumns.php │ │ └── GenerateTables.php │ ├── validate/ │ │ ├── system/ │ │ │ ├── SystemCategoryValidate.php │ │ │ ├── SystemConfigGroupValidate.php │ │ │ ├── SystemConfigValidate.php │ │ │ ├── SystemCrontabValidate.php │ │ │ ├── SystemDeptValidate.php │ │ │ ├── SystemDictDataValidate.php │ │ │ ├── SystemDictTypeValidate.php │ │ │ ├── SystemMailValidate.php │ │ │ ├── SystemMenuValidate.php │ │ │ ├── SystemNoticeValidate.php │ │ │ ├── SystemPostValidate.php │ │ │ ├── SystemRoleValidate.php │ │ │ └── SystemUserValidate.php │ │ └── tool/ │ │ ├── CrontabValidate.php │ │ └── GenerateTablesValidate.php │ └── view/ │ └── install/ │ ├── error.html │ └── index.html ├── basic/ │ ├── AbstractLogic.php │ ├── BaseController.php │ ├── BaseValidate.php │ ├── OpenController.php │ ├── contracts/ │ │ ├── LogicInterface.php │ │ └── ModelInterface.php │ ├── eloquent/ │ │ ├── BaseLogic.php │ │ └── BaseModel.php │ └── think/ │ ├── BaseLogic.php │ └── BaseModel.php ├── command/ │ ├── SaiOrm.php │ ├── SaiPlugin.php │ └── SaiUpgrade.php ├── config/ │ ├── app.php │ ├── autoload.php │ ├── container.php │ ├── database.php │ ├── event.php │ ├── exception.php │ ├── log.php │ ├── middleware.php │ ├── process.php │ ├── route.php │ ├── saithink.php │ ├── static.php │ ├── translation.php │ └── view.php ├── db/ │ ├── plugin.sql │ ├── saiadmin-6.0.sql │ └── saiadmin-pure.sql ├── exception/ │ ├── ApiException.php │ └── SystemException.php ├── process/ │ ├── Task.php │ └── Test.php ├── public/ │ └── template/ │ └── template.xlsx ├── service/ │ ├── EmailService.php │ ├── OpenSpoutWriter.php │ ├── Permission.php │ └── storage/ │ ├── ChunkUploadService.php │ └── UploadService.php └── utils/ ├── Arr.php ├── Captcha.php ├── Helper.php ├── ServerMonitor.php └── code/ ├── CodeEngine.php ├── CodeZip.php └── stub/ └── saiadmin/ ├── php/ │ ├── controller.stub │ ├── logic.stub │ ├── model.stub │ └── validate.stub ├── sql/ │ └── sql.stub ├── ts/ │ └── api.stub └── vue/ ├── edit-dialog.stub ├── index.stub └── table-search.stub