├── .gitattributes ├── .gitignore ├── CodeGenerator.sln ├── CodeGenerator ├── CodeGenerator.csproj ├── Common │ └── MyServiceProvider.cs ├── Controllers │ ├── CrudController.cs │ └── HomeController.cs ├── DB │ ├── ConstHelper.cs │ ├── DataDbContext.cs │ └── DbContextExtensions.cs ├── Data │ └── data.csv ├── Example │ ├── Application.Contracts.txt │ ├── Application.Services.txt │ ├── Domain.IRepository.txt │ ├── Domain.Repository.txt │ └── HttpApi.Controllers.txt ├── Example2 │ └── CrudTemplate.txt ├── Helper │ └── FileHelper.cs ├── Models │ ├── DbTable.cs │ ├── Table.cs │ └── ViewModel │ │ ├── ErrorViewModel.cs │ │ └── TableViewModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── Views │ ├── Crud │ │ └── Generate.cshtml │ ├── Home │ │ ├── Index.cshtml │ │ └── NamespaceAndTableSelection.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── ZipContainFiles │ └── Domain │ │ ├── Accounts.cs │ │ ├── Archives.cs │ │ ├── Articles.cs │ │ ├── Categorys.cs │ │ ├── Comments.cs │ │ ├── LoginLogs.cs │ │ ├── Logs.cs │ │ ├── Tags.cs │ │ └── __EFMigrationsHistory.cs ├── appsettings.Development.json ├── appsettings.json ├── libman.json └── wwwroot │ ├── css │ ├── NamespaceAndTableSelection.css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ ├── jquery │ ├── LICENSE.txt │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ └── layer │ ├── layer.js │ ├── layer.min.js │ └── theme │ ├── default │ ├── icon-ext.png │ ├── icon.png │ ├── layer.css │ ├── layer.min.css │ ├── loading-0.gif │ ├── loading-1.gif │ └── loading-2.gif │ └── moon │ ├── default.png │ ├── style.css │ └── style.min.css ├── EntityCreater ├── AddDatabase │ ├── EntityBuildModel.cs │ ├── IEntityBuild.cs │ ├── MySql │ │ ├── BLL │ │ │ ├── MySqlEntityBuild.cs │ │ │ └── MySqlExtend.cs │ │ ├── DAL │ │ │ └── MySql.cs │ │ └── Model │ │ │ ├── ColumnInfo.cs │ │ │ └── TableInfo.cs │ └── SqlServer │ │ ├── BLL │ │ ├── SqlServerEntityBuild.cs │ │ └── SqlServerExtend.cs │ │ ├── DAL │ │ └── SqlServer.cs │ │ └── Model │ │ ├── ColumnInfo.cs │ │ └── TableInfo.cs ├── CreateDefaultBuilder.cs ├── EntityCreater.csproj └── Utility │ ├── CreateEntityFile.cs │ └── StringBuilderExtend.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | **/wwwroot/libs/** linguist-vendored 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /CodeGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator.sln -------------------------------------------------------------------------------- /CodeGenerator/CodeGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/CodeGenerator.csproj -------------------------------------------------------------------------------- /CodeGenerator/Common/MyServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Common/MyServiceProvider.cs -------------------------------------------------------------------------------- /CodeGenerator/Controllers/CrudController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Controllers/CrudController.cs -------------------------------------------------------------------------------- /CodeGenerator/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Controllers/HomeController.cs -------------------------------------------------------------------------------- /CodeGenerator/DB/ConstHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/DB/ConstHelper.cs -------------------------------------------------------------------------------- /CodeGenerator/DB/DataDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/DB/DataDbContext.cs -------------------------------------------------------------------------------- /CodeGenerator/DB/DbContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/DB/DbContextExtensions.cs -------------------------------------------------------------------------------- /CodeGenerator/Data/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Data/data.csv -------------------------------------------------------------------------------- /CodeGenerator/Example/Application.Contracts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Example/Application.Contracts.txt -------------------------------------------------------------------------------- /CodeGenerator/Example/Application.Services.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Example/Application.Services.txt -------------------------------------------------------------------------------- /CodeGenerator/Example/Domain.IRepository.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Example/Domain.IRepository.txt -------------------------------------------------------------------------------- /CodeGenerator/Example/Domain.Repository.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Example/Domain.Repository.txt -------------------------------------------------------------------------------- /CodeGenerator/Example/HttpApi.Controllers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Example/HttpApi.Controllers.txt -------------------------------------------------------------------------------- /CodeGenerator/Example2/CrudTemplate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Example2/CrudTemplate.txt -------------------------------------------------------------------------------- /CodeGenerator/Helper/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Helper/FileHelper.cs -------------------------------------------------------------------------------- /CodeGenerator/Models/DbTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Models/DbTable.cs -------------------------------------------------------------------------------- /CodeGenerator/Models/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Models/Table.cs -------------------------------------------------------------------------------- /CodeGenerator/Models/ViewModel/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Models/ViewModel/ErrorViewModel.cs -------------------------------------------------------------------------------- /CodeGenerator/Models/ViewModel/TableViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Models/ViewModel/TableViewModel.cs -------------------------------------------------------------------------------- /CodeGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Program.cs -------------------------------------------------------------------------------- /CodeGenerator/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Properties/launchSettings.json -------------------------------------------------------------------------------- /CodeGenerator/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Startup.cs -------------------------------------------------------------------------------- /CodeGenerator/Views/Crud/Generate.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Views/Crud/Generate.cshtml -------------------------------------------------------------------------------- /CodeGenerator/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /CodeGenerator/Views/Home/NamespaceAndTableSelection.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Views/Home/NamespaceAndTableSelection.cshtml -------------------------------------------------------------------------------- /CodeGenerator/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /CodeGenerator/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /CodeGenerator/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /CodeGenerator/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /CodeGenerator/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /CodeGenerator/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /CodeGenerator/ZipContainFiles/Domain/Accounts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/ZipContainFiles/Domain/Accounts.cs -------------------------------------------------------------------------------- /CodeGenerator/ZipContainFiles/Domain/Archives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/ZipContainFiles/Domain/Archives.cs -------------------------------------------------------------------------------- /CodeGenerator/ZipContainFiles/Domain/Articles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/ZipContainFiles/Domain/Articles.cs -------------------------------------------------------------------------------- /CodeGenerator/ZipContainFiles/Domain/Categorys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/ZipContainFiles/Domain/Categorys.cs -------------------------------------------------------------------------------- /CodeGenerator/ZipContainFiles/Domain/Comments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/ZipContainFiles/Domain/Comments.cs -------------------------------------------------------------------------------- /CodeGenerator/ZipContainFiles/Domain/LoginLogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/ZipContainFiles/Domain/LoginLogs.cs -------------------------------------------------------------------------------- /CodeGenerator/ZipContainFiles/Domain/Logs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/ZipContainFiles/Domain/Logs.cs -------------------------------------------------------------------------------- /CodeGenerator/ZipContainFiles/Domain/Tags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/ZipContainFiles/Domain/Tags.cs -------------------------------------------------------------------------------- /CodeGenerator/ZipContainFiles/Domain/__EFMigrationsHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/ZipContainFiles/Domain/__EFMigrationsHistory.cs -------------------------------------------------------------------------------- /CodeGenerator/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/appsettings.Development.json -------------------------------------------------------------------------------- /CodeGenerator/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/appsettings.json -------------------------------------------------------------------------------- /CodeGenerator/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/libman.json -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/css/NamespaceAndTableSelection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/css/NamespaceAndTableSelection.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/css/site.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/favicon.ico -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/js/site.js -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/layer/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/layer/layer.js -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/layer/layer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/layer/layer.min.js -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/layer/theme/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/layer/theme/default/icon-ext.png -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/layer/theme/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/layer/theme/default/icon.png -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/layer/theme/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/layer/theme/default/layer.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/layer/theme/default/layer.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/layer/theme/default/layer.min.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/layer/theme/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/layer/theme/default/loading-0.gif -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/layer/theme/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/layer/theme/default/loading-1.gif -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/layer/theme/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/layer/theme/default/loading-2.gif -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/layer/theme/moon/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/layer/theme/moon/default.png -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/layer/theme/moon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/layer/theme/moon/style.css -------------------------------------------------------------------------------- /CodeGenerator/wwwroot/lib/layer/theme/moon/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/CodeGenerator/wwwroot/lib/layer/theme/moon/style.min.css -------------------------------------------------------------------------------- /EntityCreater/AddDatabase/EntityBuildModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/EntityCreater/AddDatabase/EntityBuildModel.cs -------------------------------------------------------------------------------- /EntityCreater/AddDatabase/IEntityBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/EntityCreater/AddDatabase/IEntityBuild.cs -------------------------------------------------------------------------------- /EntityCreater/AddDatabase/MySql/BLL/MySqlEntityBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/EntityCreater/AddDatabase/MySql/BLL/MySqlEntityBuild.cs -------------------------------------------------------------------------------- /EntityCreater/AddDatabase/MySql/BLL/MySqlExtend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/EntityCreater/AddDatabase/MySql/BLL/MySqlExtend.cs -------------------------------------------------------------------------------- /EntityCreater/AddDatabase/MySql/DAL/MySql.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/EntityCreater/AddDatabase/MySql/DAL/MySql.cs -------------------------------------------------------------------------------- /EntityCreater/AddDatabase/MySql/Model/ColumnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/EntityCreater/AddDatabase/MySql/Model/ColumnInfo.cs -------------------------------------------------------------------------------- /EntityCreater/AddDatabase/MySql/Model/TableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/EntityCreater/AddDatabase/MySql/Model/TableInfo.cs -------------------------------------------------------------------------------- /EntityCreater/AddDatabase/SqlServer/BLL/SqlServerEntityBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/EntityCreater/AddDatabase/SqlServer/BLL/SqlServerEntityBuild.cs -------------------------------------------------------------------------------- /EntityCreater/AddDatabase/SqlServer/BLL/SqlServerExtend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/EntityCreater/AddDatabase/SqlServer/BLL/SqlServerExtend.cs -------------------------------------------------------------------------------- /EntityCreater/AddDatabase/SqlServer/DAL/SqlServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/EntityCreater/AddDatabase/SqlServer/DAL/SqlServer.cs -------------------------------------------------------------------------------- /EntityCreater/AddDatabase/SqlServer/Model/ColumnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/EntityCreater/AddDatabase/SqlServer/Model/ColumnInfo.cs -------------------------------------------------------------------------------- /EntityCreater/AddDatabase/SqlServer/Model/TableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/EntityCreater/AddDatabase/SqlServer/Model/TableInfo.cs -------------------------------------------------------------------------------- /EntityCreater/CreateDefaultBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/EntityCreater/CreateDefaultBuilder.cs -------------------------------------------------------------------------------- /EntityCreater/EntityCreater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/EntityCreater/EntityCreater.csproj -------------------------------------------------------------------------------- /EntityCreater/Utility/CreateEntityFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/EntityCreater/Utility/CreateEntityFile.cs -------------------------------------------------------------------------------- /EntityCreater/Utility/StringBuilderExtend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/EntityCreater/Utility/StringBuilderExtend.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuLex/AbpVnextGenerator/HEAD/README.md --------------------------------------------------------------------------------