├── .gitignore ├── EasySwooleEvent.php ├── README.md ├── composer.json ├── dev.php ├── easyswoole ├── src ├── Config │ ├── BaseConfig.php │ ├── ControllerConfig.php │ ├── ModelConfig.php │ └── UnitTestConfig.php ├── Controller.php ├── ControllerMethodGeneration │ ├── Add.php │ ├── Delete.php │ ├── GetList.php │ ├── GetOne.php │ ├── MethodAbstract.php │ └── Update.php ├── GenerationBase.php ├── InitGeneration │ ├── BaseController.php │ ├── BaseModel.php │ └── BaseUnitTest.php ├── Model.php ├── UnitTestGeneration │ └── UnitTest.php └── Unity.php ├── test.php └── test2.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/.gitignore -------------------------------------------------------------------------------- /EasySwooleEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/EasySwooleEvent.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/composer.json -------------------------------------------------------------------------------- /dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/dev.php -------------------------------------------------------------------------------- /easyswoole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/easyswoole -------------------------------------------------------------------------------- /src/Config/BaseConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/src/Config/BaseConfig.php -------------------------------------------------------------------------------- /src/Config/ControllerConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/src/Config/ControllerConfig.php -------------------------------------------------------------------------------- /src/Config/ModelConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/src/Config/ModelConfig.php -------------------------------------------------------------------------------- /src/Config/UnitTestConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/src/Config/UnitTestConfig.php -------------------------------------------------------------------------------- /src/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/src/Controller.php -------------------------------------------------------------------------------- /src/ControllerMethodGeneration/Add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/src/ControllerMethodGeneration/Add.php -------------------------------------------------------------------------------- /src/ControllerMethodGeneration/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/src/ControllerMethodGeneration/Delete.php -------------------------------------------------------------------------------- /src/ControllerMethodGeneration/GetList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/src/ControllerMethodGeneration/GetList.php -------------------------------------------------------------------------------- /src/ControllerMethodGeneration/GetOne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/src/ControllerMethodGeneration/GetOne.php -------------------------------------------------------------------------------- /src/ControllerMethodGeneration/MethodAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/src/ControllerMethodGeneration/MethodAbstract.php -------------------------------------------------------------------------------- /src/ControllerMethodGeneration/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/src/ControllerMethodGeneration/Update.php -------------------------------------------------------------------------------- /src/GenerationBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/src/GenerationBase.php -------------------------------------------------------------------------------- /src/InitGeneration/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/src/InitGeneration/BaseController.php -------------------------------------------------------------------------------- /src/InitGeneration/BaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/src/InitGeneration/BaseModel.php -------------------------------------------------------------------------------- /src/InitGeneration/BaseUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/src/InitGeneration/BaseUnitTest.php -------------------------------------------------------------------------------- /src/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/src/Model.php -------------------------------------------------------------------------------- /src/UnitTestGeneration/UnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/src/UnitTestGeneration/UnitTest.php -------------------------------------------------------------------------------- /src/Unity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/src/Unity.php -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/test.php -------------------------------------------------------------------------------- /test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tioncico/curdAutomaticGeneration/HEAD/test2.php --------------------------------------------------------------------------------