├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── assert └── welcome ├── composer.json ├── publish └── mineadmin.php └── src ├── Abstracts ├── AbstractDataResource.php ├── AbstractMapper.php ├── AbstractQueryResource.php ├── AbstractRedis.php └── AbstractService.php ├── Annotation ├── Api │ ├── Enums │ │ └── MApiAuthModeEnum.php │ ├── MApi.php │ ├── MApiCollector.php │ ├── MApiRequestParam.php │ ├── MApiRequestParamCollector.php │ ├── MApiResponseParam.php │ └── MApiResponseParamCollector.php ├── Auth.php ├── DeleteCache.php ├── ExcelData.php ├── ExcelProperty.php ├── OperationLog.php ├── Permission.php ├── RemoteState.php ├── Resource.php ├── ResourceCollector.php ├── Resubmit.php ├── Role.php └── Transaction.php ├── Aspect ├── AuthAspect.php ├── ConfigCryptAspect.php ├── DeleteCacheAspect.php ├── OperationLogAspect.php ├── PermissionAspect.php ├── RemoteStateAspect.php ├── ResubmitAspect.php ├── RoleAspect.php ├── SaveAspect.php ├── TransactionAspect.php └── UpdateAspect.php ├── Command ├── ConfigCryptCommand.php ├── ConfigCryptGenCommand.php ├── Creater │ ├── CreateFormRequest.php │ ├── CreateModel.php │ └── Stubs │ │ └── form_request.stub ├── HttpGenCommand.php ├── InstallProjectCommand.php ├── JwtCommand.php ├── Migrate │ ├── MineMigrate.php │ ├── MineMigrateRollback.php │ ├── MineMigrateRun.php │ ├── MineMigrationCreator.php │ └── Stubs │ │ ├── blank.stub │ │ ├── create.stub │ │ └── update.stub ├── MineAdmin.php ├── ModuleCommand.php ├── Seeder │ ├── MineSeeder.php │ └── MineSeederRun.php └── UpdateProjectCommand.php ├── ConfigProvider.php ├── Crontab ├── MineCrontab.php ├── MineCrontabManage.php ├── MineCrontabProcess.php ├── MineCrontabScheduler.php ├── MineCrontabStrategy.php ├── MineExecutor.php └── Mutex │ ├── RedisServerMutex.php │ ├── RedisTaskMutex.php │ ├── ServerMutex.php │ └── TaskMutex.php ├── Event ├── ApiAfter.php ├── ApiBefore.php ├── Operation.php ├── RealDeleteUploadFile.php ├── UploadAfter.php ├── UserAdd.php ├── UserDelete.php ├── UserLoginAfter.php ├── UserLoginBefore.php └── UserLogout.php ├── Exception ├── CaptchaException.php ├── Handler │ ├── AppExceptionHandler.php │ ├── NoPermissionExceptionHandler.php │ ├── NormalStatusExceptionHandler.php │ ├── TokenExceptionHandler.php │ └── ValidationExceptionHandler.php ├── MineException.php ├── NoPermissionException.php ├── NormalStatusException.php ├── TokenException.php └── UserBanException.php ├── Interfaces ├── KeyValueEnum.php ├── MineModelExcel.php ├── MineRedisInterface.php ├── ServiceInterface │ ├── ConfigServiceInterface.php │ ├── CrontabLogServiceInterface.php │ ├── DataResourceServiceInterface.php │ ├── DictDataServiceInterface.php │ ├── GenerateColumnServiceInterface.php │ ├── MenuServiceInterface.php │ ├── ModuleServiceInterface.php │ ├── OperLogServiceInterface.php │ ├── QueryResourceServiceInterface.php │ ├── QueueLogServiceInterface.php │ ├── QueueMessageServiceInterface.php │ ├── Resource │ │ ├── ArrayResource.php │ │ ├── BaseResource.php │ │ ├── ConstResource.php │ │ ├── DataResource.php │ │ ├── FieldValueResource.php │ │ └── QueryResource.php │ ├── RoleServiceInterface.php │ └── UserServiceInterface.php └── UserServiceInterface.php ├── Listener ├── DbQueryExecutedListener.php ├── Ip2RegionListener.php ├── OperationListener.php └── ResumeExitCoordinatorListener.php ├── Log ├── Processor │ ├── SnowflakeRequestIdProcessor.php │ └── UuidRequestIdProcessor.php └── RequestIdHolder.php ├── Middlewares ├── CheckModuleMiddleware.php └── HttpCoreMiddleware.php ├── Mine.php ├── MineApi.php ├── MineApiFormRequest.php ├── MineCollection.php ├── MineCommand.php ├── MineController.php ├── MineFormRequest.php ├── MineModel.php ├── MineModelVisitor.php ├── MineRequest.php ├── MineResponse.php ├── MineServer.php ├── MineStart.php ├── MineUpload.php ├── Redis └── MineLockRedis.php ├── Snowflake ├── Configuration.php └── SnowflakeIdGenerator.php ├── Traits ├── ControllerTrait.php ├── MapperTrait.php ├── ModelMacroTrait.php └── ServiceTrait.php └── Vo └── UserServiceVo.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## MineAdmin 核心依赖包 2 | 3 | ### 安装 4 | ``` shell 5 | composer require xmo/mine-core:^1.x 6 | ``` 7 | -------------------------------------------------------------------------------- /assert/welcome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/assert/welcome -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/composer.json -------------------------------------------------------------------------------- /publish/mineadmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/publish/mineadmin.php -------------------------------------------------------------------------------- /src/Abstracts/AbstractDataResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Abstracts/AbstractDataResource.php -------------------------------------------------------------------------------- /src/Abstracts/AbstractMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Abstracts/AbstractMapper.php -------------------------------------------------------------------------------- /src/Abstracts/AbstractQueryResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Abstracts/AbstractQueryResource.php -------------------------------------------------------------------------------- /src/Abstracts/AbstractRedis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Abstracts/AbstractRedis.php -------------------------------------------------------------------------------- /src/Abstracts/AbstractService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Abstracts/AbstractService.php -------------------------------------------------------------------------------- /src/Annotation/Api/Enums/MApiAuthModeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Annotation/Api/Enums/MApiAuthModeEnum.php -------------------------------------------------------------------------------- /src/Annotation/Api/MApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Annotation/Api/MApi.php -------------------------------------------------------------------------------- /src/Annotation/Api/MApiCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Annotation/Api/MApiCollector.php -------------------------------------------------------------------------------- /src/Annotation/Api/MApiRequestParam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Annotation/Api/MApiRequestParam.php -------------------------------------------------------------------------------- /src/Annotation/Api/MApiRequestParamCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Annotation/Api/MApiRequestParamCollector.php -------------------------------------------------------------------------------- /src/Annotation/Api/MApiResponseParam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Annotation/Api/MApiResponseParam.php -------------------------------------------------------------------------------- /src/Annotation/Api/MApiResponseParamCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Annotation/Api/MApiResponseParamCollector.php -------------------------------------------------------------------------------- /src/Annotation/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Annotation/Auth.php -------------------------------------------------------------------------------- /src/Annotation/DeleteCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Annotation/DeleteCache.php -------------------------------------------------------------------------------- /src/Annotation/ExcelData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Annotation/ExcelData.php -------------------------------------------------------------------------------- /src/Annotation/ExcelProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Annotation/ExcelProperty.php -------------------------------------------------------------------------------- /src/Annotation/OperationLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Annotation/OperationLog.php -------------------------------------------------------------------------------- /src/Annotation/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Annotation/Permission.php -------------------------------------------------------------------------------- /src/Annotation/RemoteState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Annotation/RemoteState.php -------------------------------------------------------------------------------- /src/Annotation/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Annotation/Resource.php -------------------------------------------------------------------------------- /src/Annotation/ResourceCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Annotation/ResourceCollector.php -------------------------------------------------------------------------------- /src/Annotation/Resubmit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Annotation/Resubmit.php -------------------------------------------------------------------------------- /src/Annotation/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Annotation/Role.php -------------------------------------------------------------------------------- /src/Annotation/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Annotation/Transaction.php -------------------------------------------------------------------------------- /src/Aspect/AuthAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Aspect/AuthAspect.php -------------------------------------------------------------------------------- /src/Aspect/ConfigCryptAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Aspect/ConfigCryptAspect.php -------------------------------------------------------------------------------- /src/Aspect/DeleteCacheAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Aspect/DeleteCacheAspect.php -------------------------------------------------------------------------------- /src/Aspect/OperationLogAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Aspect/OperationLogAspect.php -------------------------------------------------------------------------------- /src/Aspect/PermissionAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Aspect/PermissionAspect.php -------------------------------------------------------------------------------- /src/Aspect/RemoteStateAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Aspect/RemoteStateAspect.php -------------------------------------------------------------------------------- /src/Aspect/ResubmitAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Aspect/ResubmitAspect.php -------------------------------------------------------------------------------- /src/Aspect/RoleAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Aspect/RoleAspect.php -------------------------------------------------------------------------------- /src/Aspect/SaveAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Aspect/SaveAspect.php -------------------------------------------------------------------------------- /src/Aspect/TransactionAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Aspect/TransactionAspect.php -------------------------------------------------------------------------------- /src/Aspect/UpdateAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Aspect/UpdateAspect.php -------------------------------------------------------------------------------- /src/Command/ConfigCryptCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/ConfigCryptCommand.php -------------------------------------------------------------------------------- /src/Command/ConfigCryptGenCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/ConfigCryptGenCommand.php -------------------------------------------------------------------------------- /src/Command/Creater/CreateFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/Creater/CreateFormRequest.php -------------------------------------------------------------------------------- /src/Command/Creater/CreateModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/Creater/CreateModel.php -------------------------------------------------------------------------------- /src/Command/Creater/Stubs/form_request.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/Creater/Stubs/form_request.stub -------------------------------------------------------------------------------- /src/Command/HttpGenCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/HttpGenCommand.php -------------------------------------------------------------------------------- /src/Command/InstallProjectCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/InstallProjectCommand.php -------------------------------------------------------------------------------- /src/Command/JwtCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/JwtCommand.php -------------------------------------------------------------------------------- /src/Command/Migrate/MineMigrate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/Migrate/MineMigrate.php -------------------------------------------------------------------------------- /src/Command/Migrate/MineMigrateRollback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/Migrate/MineMigrateRollback.php -------------------------------------------------------------------------------- /src/Command/Migrate/MineMigrateRun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/Migrate/MineMigrateRun.php -------------------------------------------------------------------------------- /src/Command/Migrate/MineMigrationCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/Migrate/MineMigrationCreator.php -------------------------------------------------------------------------------- /src/Command/Migrate/Stubs/blank.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/Migrate/Stubs/blank.stub -------------------------------------------------------------------------------- /src/Command/Migrate/Stubs/create.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/Migrate/Stubs/create.stub -------------------------------------------------------------------------------- /src/Command/Migrate/Stubs/update.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/Migrate/Stubs/update.stub -------------------------------------------------------------------------------- /src/Command/MineAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/MineAdmin.php -------------------------------------------------------------------------------- /src/Command/ModuleCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/ModuleCommand.php -------------------------------------------------------------------------------- /src/Command/Seeder/MineSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/Seeder/MineSeeder.php -------------------------------------------------------------------------------- /src/Command/Seeder/MineSeederRun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/Seeder/MineSeederRun.php -------------------------------------------------------------------------------- /src/Command/UpdateProjectCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Command/UpdateProjectCommand.php -------------------------------------------------------------------------------- /src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/Crontab/MineCrontab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Crontab/MineCrontab.php -------------------------------------------------------------------------------- /src/Crontab/MineCrontabManage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Crontab/MineCrontabManage.php -------------------------------------------------------------------------------- /src/Crontab/MineCrontabProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Crontab/MineCrontabProcess.php -------------------------------------------------------------------------------- /src/Crontab/MineCrontabScheduler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Crontab/MineCrontabScheduler.php -------------------------------------------------------------------------------- /src/Crontab/MineCrontabStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Crontab/MineCrontabStrategy.php -------------------------------------------------------------------------------- /src/Crontab/MineExecutor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Crontab/MineExecutor.php -------------------------------------------------------------------------------- /src/Crontab/Mutex/RedisServerMutex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Crontab/Mutex/RedisServerMutex.php -------------------------------------------------------------------------------- /src/Crontab/Mutex/RedisTaskMutex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Crontab/Mutex/RedisTaskMutex.php -------------------------------------------------------------------------------- /src/Crontab/Mutex/ServerMutex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Crontab/Mutex/ServerMutex.php -------------------------------------------------------------------------------- /src/Crontab/Mutex/TaskMutex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Crontab/Mutex/TaskMutex.php -------------------------------------------------------------------------------- /src/Event/ApiAfter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Event/ApiAfter.php -------------------------------------------------------------------------------- /src/Event/ApiBefore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Event/ApiBefore.php -------------------------------------------------------------------------------- /src/Event/Operation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Event/Operation.php -------------------------------------------------------------------------------- /src/Event/RealDeleteUploadFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Event/RealDeleteUploadFile.php -------------------------------------------------------------------------------- /src/Event/UploadAfter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Event/UploadAfter.php -------------------------------------------------------------------------------- /src/Event/UserAdd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Event/UserAdd.php -------------------------------------------------------------------------------- /src/Event/UserDelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Event/UserDelete.php -------------------------------------------------------------------------------- /src/Event/UserLoginAfter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Event/UserLoginAfter.php -------------------------------------------------------------------------------- /src/Event/UserLoginBefore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Event/UserLoginBefore.php -------------------------------------------------------------------------------- /src/Event/UserLogout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Event/UserLogout.php -------------------------------------------------------------------------------- /src/Exception/CaptchaException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Exception/CaptchaException.php -------------------------------------------------------------------------------- /src/Exception/Handler/AppExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Exception/Handler/AppExceptionHandler.php -------------------------------------------------------------------------------- /src/Exception/Handler/NoPermissionExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Exception/Handler/NoPermissionExceptionHandler.php -------------------------------------------------------------------------------- /src/Exception/Handler/NormalStatusExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Exception/Handler/NormalStatusExceptionHandler.php -------------------------------------------------------------------------------- /src/Exception/Handler/TokenExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Exception/Handler/TokenExceptionHandler.php -------------------------------------------------------------------------------- /src/Exception/Handler/ValidationExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Exception/Handler/ValidationExceptionHandler.php -------------------------------------------------------------------------------- /src/Exception/MineException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Exception/MineException.php -------------------------------------------------------------------------------- /src/Exception/NoPermissionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Exception/NoPermissionException.php -------------------------------------------------------------------------------- /src/Exception/NormalStatusException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Exception/NormalStatusException.php -------------------------------------------------------------------------------- /src/Exception/TokenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Exception/TokenException.php -------------------------------------------------------------------------------- /src/Exception/UserBanException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Exception/UserBanException.php -------------------------------------------------------------------------------- /src/Interfaces/KeyValueEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/KeyValueEnum.php -------------------------------------------------------------------------------- /src/Interfaces/MineModelExcel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/MineModelExcel.php -------------------------------------------------------------------------------- /src/Interfaces/MineRedisInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/MineRedisInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ServiceInterface/ConfigServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/ServiceInterface/ConfigServiceInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ServiceInterface/CrontabLogServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/ServiceInterface/CrontabLogServiceInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ServiceInterface/DataResourceServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/ServiceInterface/DataResourceServiceInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ServiceInterface/DictDataServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/ServiceInterface/DictDataServiceInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ServiceInterface/GenerateColumnServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/ServiceInterface/GenerateColumnServiceInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ServiceInterface/MenuServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/ServiceInterface/MenuServiceInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ServiceInterface/ModuleServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/ServiceInterface/ModuleServiceInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ServiceInterface/OperLogServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/ServiceInterface/OperLogServiceInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ServiceInterface/QueryResourceServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/ServiceInterface/QueryResourceServiceInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ServiceInterface/QueueLogServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/ServiceInterface/QueueLogServiceInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ServiceInterface/QueueMessageServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/ServiceInterface/QueueMessageServiceInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ServiceInterface/Resource/ArrayResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/ServiceInterface/Resource/ArrayResource.php -------------------------------------------------------------------------------- /src/Interfaces/ServiceInterface/Resource/BaseResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/ServiceInterface/Resource/BaseResource.php -------------------------------------------------------------------------------- /src/Interfaces/ServiceInterface/Resource/ConstResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/ServiceInterface/Resource/ConstResource.php -------------------------------------------------------------------------------- /src/Interfaces/ServiceInterface/Resource/DataResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/ServiceInterface/Resource/DataResource.php -------------------------------------------------------------------------------- /src/Interfaces/ServiceInterface/Resource/FieldValueResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/ServiceInterface/Resource/FieldValueResource.php -------------------------------------------------------------------------------- /src/Interfaces/ServiceInterface/Resource/QueryResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/ServiceInterface/Resource/QueryResource.php -------------------------------------------------------------------------------- /src/Interfaces/ServiceInterface/RoleServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/ServiceInterface/RoleServiceInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ServiceInterface/UserServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/ServiceInterface/UserServiceInterface.php -------------------------------------------------------------------------------- /src/Interfaces/UserServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Interfaces/UserServiceInterface.php -------------------------------------------------------------------------------- /src/Listener/DbQueryExecutedListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Listener/DbQueryExecutedListener.php -------------------------------------------------------------------------------- /src/Listener/Ip2RegionListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Listener/Ip2RegionListener.php -------------------------------------------------------------------------------- /src/Listener/OperationListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Listener/OperationListener.php -------------------------------------------------------------------------------- /src/Listener/ResumeExitCoordinatorListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Listener/ResumeExitCoordinatorListener.php -------------------------------------------------------------------------------- /src/Log/Processor/SnowflakeRequestIdProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Log/Processor/SnowflakeRequestIdProcessor.php -------------------------------------------------------------------------------- /src/Log/Processor/UuidRequestIdProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Log/Processor/UuidRequestIdProcessor.php -------------------------------------------------------------------------------- /src/Log/RequestIdHolder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Log/RequestIdHolder.php -------------------------------------------------------------------------------- /src/Middlewares/CheckModuleMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Middlewares/CheckModuleMiddleware.php -------------------------------------------------------------------------------- /src/Middlewares/HttpCoreMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Middlewares/HttpCoreMiddleware.php -------------------------------------------------------------------------------- /src/Mine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Mine.php -------------------------------------------------------------------------------- /src/MineApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/MineApi.php -------------------------------------------------------------------------------- /src/MineApiFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/MineApiFormRequest.php -------------------------------------------------------------------------------- /src/MineCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/MineCollection.php -------------------------------------------------------------------------------- /src/MineCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/MineCommand.php -------------------------------------------------------------------------------- /src/MineController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/MineController.php -------------------------------------------------------------------------------- /src/MineFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/MineFormRequest.php -------------------------------------------------------------------------------- /src/MineModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/MineModel.php -------------------------------------------------------------------------------- /src/MineModelVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/MineModelVisitor.php -------------------------------------------------------------------------------- /src/MineRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/MineRequest.php -------------------------------------------------------------------------------- /src/MineResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/MineResponse.php -------------------------------------------------------------------------------- /src/MineServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/MineServer.php -------------------------------------------------------------------------------- /src/MineStart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/MineStart.php -------------------------------------------------------------------------------- /src/MineUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/MineUpload.php -------------------------------------------------------------------------------- /src/Redis/MineLockRedis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Redis/MineLockRedis.php -------------------------------------------------------------------------------- /src/Snowflake/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Snowflake/Configuration.php -------------------------------------------------------------------------------- /src/Snowflake/SnowflakeIdGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Snowflake/SnowflakeIdGenerator.php -------------------------------------------------------------------------------- /src/Traits/ControllerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Traits/ControllerTrait.php -------------------------------------------------------------------------------- /src/Traits/MapperTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Traits/MapperTrait.php -------------------------------------------------------------------------------- /src/Traits/ModelMacroTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Traits/ModelMacroTrait.php -------------------------------------------------------------------------------- /src/Traits/ServiceTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Traits/ServiceTrait.php -------------------------------------------------------------------------------- /src/Vo/UserServiceVo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineadmin/mine-core/HEAD/src/Vo/UserServiceVo.php --------------------------------------------------------------------------------