在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → ASP.NET Core2.2+Vue.js+mysql+redis开发的网站框架

ASP.NET Core2.2+Vue.js+mysql+redis开发的网站框架

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:11.41M
  • 下载次数:29
  • 浏览次数:159
  • 发布时间:2021-11-27
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
ASP.NET Core2.2+Vue.js+mysql+redis开发的网站框架,搭建的框架实例。后期会持续更新。
【实例截图】
【核心代码】
4744302542958755559.zip
└── ZhaoYu
├── LICENSE
├── README.md
├── WebApplication1
│   ├── appsettings.Development.json
│   ├── appsettings.json
│   ├── bin
│   │   └── Debug
│   │   └── netcoreapp2.2
│   ├── Controllers
│   │   └── HomeController.cs
│   ├── Models
│   │   └── ErrorViewModel.cs
│   ├── obj
│   │   ├── Debug
│   │   │   └── netcoreapp2.2
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── WebApplication1.AssemblyInfo.cs
│   │   │   ├── WebApplication1.AssemblyInfoInputs.cache
│   │   │   ├── WebApplication1.assets.cache
│   │   │   ├── WebApplication1.csprojAssemblyReference.cache
│   │   │   ├── WebApplication1.csproj.CoreCompileInputs.cache
│   │   │   ├── WebApplication1.RazorAssemblyInfo.cache
│   │   │   └── WebApplication1.RazorAssemblyInfo.cs
│   │   ├── project.assets.json
│   │   ├── WebApplication1.csproj.nuget.cache
│   │   ├── WebApplication1.csproj.nuget.g.props
│   │   └── WebApplication1.csproj.nuget.g.targets
│   ├── Program.cs
│   ├── Properties
│   │   └── launchSettings.json
│   ├── Startup.cs
│   ├── Views
│   │   ├── Home
│   │   │   ├── Index.cshtml
│   │   │   └── Privacy.cshtml
│   │   ├── Shared
│   │   │   ├── _CookieConsentPartial.cshtml
│   │   │   ├── Error.cshtml
│   │   │   ├── _Layout.cshtml
│   │   │   └── _ValidationScriptsPartial.cshtml
│   │   ├── _ViewImports.cshtml
│   │   └── _ViewStart.cshtml
│   ├── WebApplication1.csproj
│   └── wwwroot
│   ├── css
│   │   └── site.css
│   ├── favicon.ico
│   ├── js
│   │   └── site.js
│   └── lib
│   ├── bootstrap
│   │   ├── dist
│   │   │   ├── css
│   │   │   │   ├── bootstrap.css
│   │   │   │   ├── bootstrap.css.map
│   │   │   │   ├── bootstrap-grid.css
│   │   │   │   ├── bootstrap-grid.css.map
│   │   │   │   ├── bootstrap-grid.min.css
│   │   │   │   ├── bootstrap-grid.min.css.map
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── bootstrap.min.css.map
│   │   │   │   ├── bootstrap-reboot.css
│   │   │   │   ├── bootstrap-reboot.css.map
│   │   │   │   ├── bootstrap-reboot.min.css
│   │   │   │   └── bootstrap-reboot.min.css.map
│   │   │   └── js
│   │   │   ├── bootstrap.bundle.js
│   │   │   ├── bootstrap.bundle.js.map
│   │   │   ├── bootstrap.bundle.min.js
│   │   │   ├── bootstrap.bundle.min.js.map
│   │   │   ├── bootstrap.js
│   │   │   ├── bootstrap.js.map
│   │   │   ├── bootstrap.min.js
│   │   │   └── bootstrap.min.js.map
│   │   └── LICENSE
│   ├── jquery
│   │   ├── dist
│   │   │   ├── jquery.js
│   │   │   ├── jquery.min.js
│   │   │   └── jquery.min.map
│   │   └── LICENSE.txt
│   ├── jquery-validation
│   │   ├── dist
│   │   │   ├── additional-methods.js
│   │   │   ├── additional-methods.min.js
│   │   │   ├── jquery.validate.js
│   │   │   └── jquery.validate.min.js
│   │   └── LICENSE.md
│   └── jquery-validation-unobtrusive
│   ├── jquery.validate.unobtrusive.js
│   ├── jquery.validate.unobtrusive.min.js
│   └── LICENSE.txt
├── ZhaoYu
│   ├── appsettings.Development.json
│   ├── appsettings.json
│   ├── bin
│   │   └── Debug
│   │   └── netcoreapp2.2
│   │   ├── ZhaoYu.deps.json
│   │   ├── ZhaoYu.dll
│   │   ├── ZhaoYu.dll.config
│   │   ├── ZhaoYu.pdb
│   │   ├── ZhaoYu.runtimeconfig.dev.json
│   │   ├── ZhaoYu.runtimeconfig.json
│   │   ├── ZhaoYu.Views.dll
│   │   └── ZhaoYu.Views.pdb
│   ├── Controllers
│   │   └── HomeController.cs
│   ├── Models
│   │   └── ErrorViewModel.cs
│   ├── obj
│   │   ├── Debug
│   │   │   └── netcoreapp2.2
│   │   │   ├── Razor
│   │   │   │   └── Views
│   │   │   │   ├── Home
│   │   │   │   │   ├── Index.g.cshtml.cs
│   │   │   │   │   └── Privacy.g.cshtml.cs
│   │   │   │   ├── Shared
│   │   │   │   │   ├── _CookieConsentPartial.g.cshtml.cs
│   │   │   │   │   ├── Error.g.cshtml.cs
│   │   │   │   │   ├── _Layout.g.cshtml.cs
│   │   │   │   │   └── _ValidationScriptsPartial.g.cshtml.cs
│   │   │   │   ├── _ViewImports.g.cshtml.cs
│   │   │   │   └── _ViewStart.g.cshtml.cs
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── ZhaoYu.Admin.AssemblyInfo.cs
│   │   │   ├── ZhaoYu.Admin.AssemblyInfoInputs.cache
│   │   │   ├── ZhaoYu.Admin.assets.cache
│   │   │   ├── ZhaoYu.Admin.csprojAssemblyReference.cache
│   │   │   ├── ZhaoYu.Admin.csproj.CoreCompileInputs.cache
│   │   │   ├── ZhaoYu.Admin.RazorAssemblyInfo.cache
│   │   │   ├── ZhaoYu.Admin.RazorAssemblyInfo.cs
│   │   │   ├── ZhaoYu.AssemblyInfo.cs
│   │   │   ├── ZhaoYu.AssemblyInfoInputs.cache
│   │   │   ├── ZhaoYu.assets.cache
│   │   │   ├── ZhaoYu.csprojAssemblyReference.cache
│   │   │   ├── ZhaoYu.csproj.CopyComplete
│   │   │   ├── ZhaoYu.csproj.CoreCompileInputs.cache
│   │   │   ├── ZhaoYu.csproj.FileListAbsolute.txt
│   │   │   ├── ZhaoYu.dll
│   │   │   ├── ZhaoYu.dll.config
│   │   │   ├── ZhaoYu.pdb
│   │   │   ├── ZhaoYu.RazorAssemblyInfo.cache
│   │   │   ├── ZhaoYu.RazorAssemblyInfo.cs
│   │   │   ├── ZhaoYu.RazorCoreGenerate.cache
│   │   │   ├── ZhaoYu.RazorTargetAssemblyInfo.cache
│   │   │   ├── ZhaoYu.RazorTargetAssemblyInfo.cs
│   │   │   ├── ZhaoYu.TagHelpers.input.cache
│   │   │   ├── ZhaoYu.TagHelpers.output.cache
│   │   │   ├── ZhaoYu.Views.dll
│   │   │   └── ZhaoYu.Views.pdb
│   │   ├── project.assets.json
│   │   ├── ZhaoYu.Admin.csproj.nuget.cache
│   │   ├── ZhaoYu.Admin.csproj.nuget.g.props
│   │   ├── ZhaoYu.Admin.csproj.nuget.g.targets
│   │   ├── ZhaoYu.csproj.nuget.cache
│   │   ├── ZhaoYu.csproj.nuget.g.props
│   │   └── ZhaoYu.csproj.nuget.g.targets
│   ├── Program.cs
│   ├── Properties
│   │   └── launchSettings.json
│   ├── Startup.cs
│   ├── Views
│   │   ├── Home
│   │   │   ├── Index.cshtml
│   │   │   └── Privacy.cshtml
│   │   ├── Shared
│   │   │   ├── _CookieConsentPartial.cshtml
│   │   │   ├── Error.cshtml
│   │   │   ├── _Layout.cshtml
│   │   │   └── _ValidationScriptsPartial.cshtml
│   │   ├── _ViewImports.cshtml
│   │   └── _ViewStart.cshtml
│   ├── wwwroot
│   │   ├── css
│   │   │   └── site.css
│   │   ├── favicon.ico
│   │   ├── js
│   │   │   └── site.js
│   │   └── lib
│   │   ├── bootstrap
│   │   │   ├── dist
│   │   │   │   ├── css
│   │   │   │   │   ├── bootstrap.css
│   │   │   │   │   ├── bootstrap.css.map
│   │   │   │   │   ├── bootstrap-grid.css
│   │   │   │   │   ├── bootstrap-grid.css.map
│   │   │   │   │   ├── bootstrap-grid.min.css
│   │   │   │   │   ├── bootstrap-grid.min.css.map
│   │   │   │   │   ├── bootstrap.min.css
│   │   │   │   │   ├── bootstrap.min.css.map
│   │   │   │   │   ├── bootstrap-reboot.css
│   │   │   │   │   ├── bootstrap-reboot.css.map
│   │   │   │   │   ├── bootstrap-reboot.min.css
│   │   │   │   │   └── bootstrap-reboot.min.css.map
│   │   │   │   └── js
│   │   │   │   ├── bootstrap.bundle.js
│   │   │   │   ├── bootstrap.bundle.js.map
│   │   │   │   ├── bootstrap.bundle.min.js
│   │   │   │   ├── bootstrap.bundle.min.js.map
│   │   │   │   ├── bootstrap.js
│   │   │   │   ├── bootstrap.js.map
│   │   │   │   ├── bootstrap.min.js
│   │   │   │   └── bootstrap.min.js.map
│   │   │   └── LICENSE
│   │   ├── jquery
│   │   │   ├── dist
│   │   │   │   ├── jquery.js
│   │   │   │   ├── jquery.min.js
│   │   │   │   └── jquery.min.map
│   │   │   └── LICENSE.txt
│   │   ├── jquery-validation
│   │   │   ├── dist
│   │   │   │   ├── additional-methods.js
│   │   │   │   ├── additional-methods.min.js
│   │   │   │   ├── jquery.validate.js
│   │   │   │   └── jquery.validate.min.js
│   │   │   └── LICENSE.md
│   │   └── jquery-validation-unobtrusive
│   │   ├── jquery.validate.unobtrusive.js
│   │   ├── jquery.validate.unobtrusive.min.js
│   │   └── LICENSE.txt
│   └── ZhaoYu.Admin.csproj
├── ZhaoYu.Admin
│   ├── appsettings.Development.json
│   ├── appsettings.json
│   ├── bin
│   │   └── Debug
│   │   └── netcoreapp2.2
│   │   ├── ZhaoYu.Admin.deps.json
│   │   ├── ZhaoYu.Admin.dll
│   │   ├── ZhaoYu.Admin.dll.config
│   │   ├── ZhaoYu.Admin.pdb
│   │   ├── ZhaoYu.Admin.runtimeconfig.dev.json
│   │   ├── ZhaoYu.Admin.runtimeconfig.json
│   │   ├── ZhaoYu.Admin.Views.dll
│   │   ├── ZhaoYu.Admin.Views.pdb
│   │   ├── ZhaoYu.Core.dll
│   │   ├── ZhaoYu.Core.pdb
│   │   ├── ZhaoYu.IRepository.dll
│   │   ├── ZhaoYu.IRepository.pdb
│   │   ├── ZhaoYu.IService.dll
│   │   ├── ZhaoYu.IService.pdb
│   │   ├── ZhaoYu.Models.dll
│   │   ├── ZhaoYu.Models.pdb
│   │   ├── ZhaoYu.Repository.dll
│   │   ├── ZhaoYu.Repository.pdb
│   │   ├── ZhaoYu.Service.dll
│   │   ├── ZhaoYu.Service.pdb
│   │   ├── ZhaoYu.ViewModels.dll
│   │   └── ZhaoYu.ViewModels.pdb
│   ├── Controllers
│   │   ├── AccountController.cs
│   │   ├── BaseController.cs
│   │   └── HomeController.cs
│   ├── Filter
│   │   ├── AuthFilter.cs
│   │   ├── GlobalExceptionFilter.cs
│   │   └── PermissionFilter.cs
│   ├── Models
│   │   └── ErrorViewModel.cs
│   ├── obj
│   │   ├── Debug
│   │   │   └── netcoreapp2.2
│   │   │   ├── Razor
│   │   │   │   └── Views
│   │   │   │   ├── Account
│   │   │   │   │   └── Index.g.cshtml.cs
│   │   │   │   ├── Home
│   │   │   │   │   ├── Index.g.cshtml.cs
│   │   │   │   │   └── Privacy.g.cshtml.cs
│   │   │   │   ├── Shared
│   │   │   │   │   ├── _CookieConsentPartial.g.cshtml.cs
│   │   │   │   │   ├── Error.g.cshtml.cs
│   │   │   │   │   ├── _Layout.g.cshtml.cs
│   │   │   │   │   └── _ValidationScriptsPartial.g.cshtml.cs
│   │   │   │   ├── _ViewImports.g.cshtml.cs
│   │   │   │   └── _ViewStart.g.cshtml.cs
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── ZhaoYu.Admin.AssemblyInfo.cs
│   │   │   ├── ZhaoYu.Admin.AssemblyInfoInputs.cache
│   │   │   ├── ZhaoYu.Admin.assets.cache
│   │   │   ├── ZhaoYu.Admin.csprojAssemblyReference.cache
│   │   │   ├── ZhaoYu.Admin.csproj.CopyComplete
│   │   │   ├── ZhaoYu.Admin.csproj.CoreCompileInputs.cache
│   │   │   ├── ZhaoYu.Admin.csproj.FileListAbsolute.txt
│   │   │   ├── ZhaoYu.Admin.dll
│   │   │   ├── ZhaoYu.Admin.dll.config
│   │   │   ├── ZhaoYu.Admin.pdb
│   │   │   ├── ZhaoYu.Admin.RazorAssemblyInfo.cache
│   │   │   ├── ZhaoYu.Admin.RazorAssemblyInfo.cs
│   │   │   ├── ZhaoYu.Admin.RazorCoreGenerate.cache
│   │   │   ├── ZhaoYu.Admin.RazorTargetAssemblyInfo.cache
│   │   │   ├── ZhaoYu.Admin.RazorTargetAssemblyInfo.cs
│   │   │   ├── ZhaoYu.Admin.TagHelpers.input.cache
│   │   │   ├── ZhaoYu.Admin.TagHelpers.output.cache
│   │   │   ├── ZhaoYu.Admin.Views.dll
│   │   │   └── ZhaoYu.Admin.Views.pdb
│   │   ├── project.assets.json
│   │   ├── ZhaoYu.Admin.csproj.nuget.cache
│   │   ├── ZhaoYu.Admin.csproj.nuget.g.props
│   │   └── ZhaoYu.Admin.csproj.nuget.g.targets
│   ├── Program.cs
│   ├── Properties
│   │   └── launchSettings.json
│   ├── Startup.cs
│   ├── Validation
│   │   └── ManagerUserValidation.cs
│   ├── Views
│   │   ├── Account
│   │   │   └── Index.cshtml
│   │   ├── Home
│   │   │   ├── Index.cshtml
│   │   │   └── Privacy.cshtml
│   │   ├── Shared
│   │   │   ├── _CookieConsentPartial.cshtml
│   │   │   ├── Error.cshtml
│   │   │   ├── _Layout.cshtml
│   │   │   └── _ValidationScriptsPartial.cshtml
│   │   ├── _ViewImports.cshtml
│   │   └── _ViewStart.cshtml
│   ├── wwwroot
│   │   ├── css
│   │   │   └── site.css
│   │   ├── favicon.ico
│   │   ├── js
│   │   │   └── site.js
│   │   └── lib
│   │   ├── bootstrap
│   │   │   ├── dist
│   │   │   │   ├── css
│   │   │   │   │   ├── bootstrap.css
│   │   │   │   │   ├── bootstrap.css.map
│   │   │   │   │   ├── bootstrap-grid.css
│   │   │   │   │   ├── bootstrap-grid.css.map
│   │   │   │   │   ├── bootstrap-grid.min.css
│   │   │   │   │   ├── bootstrap-grid.min.css.map
│   │   │   │   │   ├── bootstrap.min.css
│   │   │   │   │   ├── bootstrap.min.css.map
│   │   │   │   │   ├── bootstrap-reboot.css
│   │   │   │   │   ├── bootstrap-reboot.css.map
│   │   │   │   │   ├── bootstrap-reboot.min.css
│   │   │   │   │   └── bootstrap-reboot.min.css.map
│   │   │   │   └── js
│   │   │   │   ├── bootstrap.bundle.js
│   │   │   │   ├── bootstrap.bundle.js.map
│   │   │   │   ├── bootstrap.bundle.min.js
│   │   │   │   ├── bootstrap.bundle.min.js.map
│   │   │   │   ├── bootstrap.js
│   │   │   │   ├── bootstrap.js.map
│   │   │   │   ├── bootstrap.min.js
│   │   │   │   └── bootstrap.min.js.map
│   │   │   └── LICENSE
│   │   ├── jquery
│   │   │   ├── dist
│   │   │   │   ├── jquery.js
│   │   │   │   ├── jquery.min.js
│   │   │   │   └── jquery.min.map
│   │   │   └── LICENSE.txt
│   │   ├── jquery-validation
│   │   │   ├── dist
│   │   │   │   ├── additional-methods.js
│   │   │   │   ├── additional-methods.min.js
│   │   │   │   ├── jquery.validate.js
│   │   │   │   └── jquery.validate.min.js
│   │   │   └── LICENSE.md
│   │   └── jquery-validation-unobtrusive
│   │   ├── jquery.validate.unobtrusive.js
│   │   ├── jquery.validate.unobtrusive.min.js
│   │   └── LICENSE.txt
│   ├── ZhaoYu.Admin.csproj
│   └── ZhaoYu.Admin.csproj.user
├── ZhaoYu.Core
│   ├── bin
│   │   └── Debug
│   │   └── netcoreapp2.2
│   │   ├── ZhaoYu.Core.deps.json
│   │   ├── ZhaoYu.Core.dll
│   │   ├── ZhaoYu.Core.pdb
│   │   ├── ZhaoYu.Models.dll
│   │   ├── ZhaoYu.Models.pdb
│   │   ├── ZhaoYu.ViewModels.dll
│   │   └── ZhaoYu.ViewModels.pdb
│   ├── Cache
│   │   ├── CacheHelper.cs
│   │   ├── ICache.cs
│   │   ├── RedisCache.cs
│   │   └── SystemCache.cs
│   ├── Common
│   │   ├── AutofacHelper.cs
│   │   ├── GlobalSwitch.cs
│   │   ├── HttpContextCore.cs
│   │   └── OperatorInfo.cs
│   ├── Extensions
│   │   ├── HttpContextExtensions.cs
│   │   └── StringExtensions.cs
│   ├── Helper
│   │   ├── CacheHelper.cs
│   │   ├── ConnectionFactory.cs
│   │   └── SessionHelper.cs
│   ├── IDependencyRegister.cs
│   ├── JsonHelper
│   │   ├── JObjectModelBinder.cs
│   │   ├── JObjectModelBinderProvider.cs
│   │   ├── JObjectValueProvider.cs
│   │   └── JObjectValueProviderFactory.cs
│   ├── Models
│   │   └── DataBaseType.cs
│   ├── obj
│   │   ├── Debug
│   │   │   └── netcoreapp2.2
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── ZhaoYu.Core.AssemblyInfo.cs
│   │   │   ├── ZhaoYu.Core.AssemblyInfoInputs.cache
│   │   │   ├── ZhaoYu.Core.assets.cache
│   │   │   ├── ZhaoYu.Core.csprojAssemblyReference.cache
│   │   │   ├── ZhaoYu.Core.csproj.CopyComplete
│   │   │   ├── ZhaoYu.Core.csproj.CoreCompileInputs.cache
│   │   │   ├── ZhaoYu.Core.csproj.FileListAbsolute.txt
│   │   │   ├── ZhaoYu.Core.dll
│   │   │   └── ZhaoYu.Core.pdb
│   │   ├── project.assets.json
│   │   ├── ZhaoYu.Core.csproj.nuget.cache
│   │   ├── ZhaoYu.Core.csproj.nuget.g.props
│   │   └── ZhaoYu.Core.csproj.nuget.g.targets
│   ├── Options
│   │   └── DbOption.cs
│   ├── Repository
│   │   ├── BaseRepository.cs
│   │   ├── IBaseRepository.cs
│   │   ├── IUnitOfWork.cs
│   │   └── UnitOfWork.cs
│   ├── ZhaoYu.Core.csproj
│   └── ZhaoYu.Core.csproj.user
├── ZhaoYu.IRepository
│   ├── bin
│   │   └── Debug
│   │   └── netcoreapp2.2
│   │   ├── Microsoft.AspNetCore.Mvc.Core.dll
│   │   ├── Microsoft.AspNetCore.Mvc.Core.xml
│   │   ├── ZhaoYu.IRepository.deps.json
│   │   ├── ZhaoYu.IRepository.dll
│   │   ├── ZhaoYu.IRepository.pdb
│   │   ├── ZhaoYu.Models.dll
│   │   ├── ZhaoYu.Models.pdb
│   │   ├── ZhaoYu.ViewModels.dll
│   │   └── ZhaoYu.ViewModels.pdb
│   ├── obj
│   │   ├── Debug
│   │   │   └── netcoreapp2.2
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── ZhaoYu.IRepository.AssemblyInfo.cs
│   │   │   ├── ZhaoYu.IRepository.AssemblyInfoInputs.cache
│   │   │   ├── ZhaoYu.IRepository.assets.cache
│   │   │   ├── ZhaoYu.IRepository.csprojAssemblyReference.cache
│   │   │   ├── ZhaoYu.IRepository.csproj.CopyComplete
│   │   │   ├── ZhaoYu.IRepository.csproj.CoreCompileInputs.cache
│   │   │   ├── ZhaoYu.IRepository.csproj.FileListAbsolute.txt
│   │   │   ├── ZhaoYu.IRepository.dll
│   │   │   └── ZhaoYu.IRepository.pdb
│   │   ├── project.assets.json
│   │   ├── ZhaoYu.IRepository.csproj.nuget.cache
│   │   ├── ZhaoYu.IRepository.csproj.nuget.g.props
│   │   └── ZhaoYu.IRepository.csproj.nuget.g.targets
│   ├── User
│   │   └── IUserRepository.cs
│   └── ZhaoYu.IRepository.csproj
├── ZhaoYu.IServices
│   ├── bin
│   │   └── Debug
│   │   └── netcoreapp2.2
│   │   ├── Microsoft.AspNetCore.Mvc.Core.dll
│   │   ├── Microsoft.AspNetCore.Mvc.Core.xml
│   │   ├── ZhaoYu.IService.deps.json
│   │   ├── ZhaoYu.IService.dll
│   │   ├── ZhaoYu.IService.pdb
│   │   ├── ZhaoYu.IServices.deps.json
│   │   ├── ZhaoYu.IServices.dll
│   │   ├── ZhaoYu.IServices.pdb
│   │   ├── ZhaoYu.Models.dll
│   │   ├── ZhaoYu.Models.pdb
│   │   ├── ZhaoYu.ViewModels.dll
│   │   └── ZhaoYu.ViewModels.pdb
│   ├── Manager
│   │   └── IManagerService.cs
│   ├── obj
│   │   ├── Debug
│   │   │   └── netcoreapp2.2
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── ZhaoYu.IService.AssemblyInfo.cs
│   │   │   ├── ZhaoYu.IService.AssemblyInfoInputs.cache
│   │   │   ├── ZhaoYu.IService.assets.cache
│   │   │   ├── ZhaoYu.IService.csprojAssemblyReference.cache
│   │   │   ├── ZhaoYu.IService.csproj.CopyComplete
│   │   │   ├── ZhaoYu.IService.csproj.CoreCompileInputs.cache
│   │   │   ├── ZhaoYu.IService.csproj.FileListAbsolute.txt
│   │   │   ├── ZhaoYu.IService.dll
│   │   │   ├── ZhaoYu.IService.pdb
│   │   │   ├── ZhaoYu.IServices.AssemblyInfo.cs
│   │   │   ├── ZhaoYu.IServices.AssemblyInfoInputs.cache
│   │   │   ├── ZhaoYu.IServices.assets.cache
│   │   │   ├── ZhaoYu.IServices.csprojAssemblyReference.cache
│   │   │   ├── ZhaoYu.IServices.csproj.CoreCompileInputs.cache
│   │   │   ├── ZhaoYu.IServices.csproj.FileListAbsolute.txt
│   │   │   ├── ZhaoYu.IServices.dll
│   │   │   └── ZhaoYu.IServices.pdb
│   │   ├── project.assets.json
│   │   ├── ZhaoYu.IService.csproj.nuget.cache
│   │   ├── ZhaoYu.IService.csproj.nuget.g.props
│   │   ├── ZhaoYu.IService.csproj.nuget.g.targets
│   │   ├── ZhaoYu.IServices.csproj.nuget.cache
│   │   ├── ZhaoYu.IServices.csproj.nuget.g.props
│   │   └── ZhaoYu.IServices.csproj.nuget.g.targets
│   ├── User
│   │   └── IUserService.cs
│   └── ZhaoYu.IService.csproj
├── ZhaoYu.Models
│   ├── bin
│   │   └── Debug
│   │   └── netcoreapp2.2
│   │   ├── ZhaoYu.Models.deps.json
│   │   ├── ZhaoYu.Models.dll
│   │   └── ZhaoYu.Models.pdb
│   ├── DelegateHelper.cs
│   ├── EmitHelper.cs
│   ├── obj
│   │   ├── Debug
│   │   │   └── netcoreapp2.2
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── ZhaoYu.Models.AssemblyInfo.cs
│   │   │   ├── ZhaoYu.Models.AssemblyInfoInputs.cache
│   │   │   ├── ZhaoYu.Models.assets.cache
│   │   │   ├── ZhaoYu.Models.csprojAssemblyReference.cache
│   │   │   ├── ZhaoYu.Models.csproj.CoreCompileInputs.cache
│   │   │   ├── ZhaoYu.Models.csproj.FileListAbsolute.txt
│   │   │   ├── ZhaoYu.Models.dll
│   │   │   └── ZhaoYu.Models.pdb
│   │   ├── project.assets.json
│   │   ├── ZhaoYu.Models.csproj.nuget.cache
│   │   ├── ZhaoYu.Models.csproj.nuget.g.props
│   │   └── ZhaoYu.Models.csproj.nuget.g.targets
│   ├── Pagination.cs
│   ├── User
│   │   └── Z_USER_Y.cs
│   ├── ZhaoYu.Models.csproj
│   ├── Z_ROLE_PERMISSION_Y.cs
│   └── Z_ROLE_Y.cs
├── ZhaoYu.Repository
│   ├── bin
│   │   └── Debug
│   │   └── netcoreapp2.2
│   │   ├── Microsoft.AspNetCore.Mvc.Core.dll
│   │   ├── Microsoft.AspNetCore.Mvc.Core.xml
│   │   ├── ZhaoYu.Core.dll
│   │   ├── ZhaoYu.Core.pdb
│   │   ├── ZhaoYu.IRepository.dll
│   │   ├── ZhaoYu.IRepository.pdb
│   │   ├── ZhaoYu.Models.dll
│   │   ├── ZhaoYu.Models.pdb
│   │   ├── ZhaoYu.Repository.deps.json
│   │   ├── ZhaoYu.Repository.dll
│   │   ├── ZhaoYu.Repository.pdb
│   │   ├── ZhaoYu.ViewModels.dll
│   │   └── ZhaoYu.ViewModels.pdb
│   ├── IDependencyRepository.cs
│   ├── obj
│   │   ├── Debug
│   │   │   └── netcoreapp2.2
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── ZhaoYu.Repository.AssemblyInfo.cs
│   │   │   ├── ZhaoYu.Repository.AssemblyInfoInputs.cache
│   │   │   ├── ZhaoYu.Repository.assets.cache
│   │   │   ├── ZhaoYu.Repository.csprojAssemblyReference.cache
│   │   │   ├── ZhaoYu.Repository.csproj.CopyComplete
│   │   │   ├── ZhaoYu.Repository.csproj.CoreCompileInputs.cache
│   │   │   ├── ZhaoYu.Repository.csproj.FileListAbsolute.txt
│   │   │   ├── ZhaoYu.Repository.dll
│   │   │   └── ZhaoYu.Repository.pdb
│   │   ├── project.assets.json
│   │   ├── ZhaoYu.Repository.csproj.nuget.cache
│   │   ├── ZhaoYu.Repository.csproj.nuget.g.props
│   │   └── ZhaoYu.Repository.csproj.nuget.g.targets
│   ├── User
│   │   └── UserRepository.cs
│   └── ZhaoYu.Repository.csproj
├── ZhaoYu.Services
│   ├── bin
│   │   └── Debug
│   │   └── netcoreapp2.2
│   │   ├── Microsoft.AspNetCore.Mvc.Core.dll
│   │   ├── Microsoft.AspNetCore.Mvc.Core.xml
│   │   ├── ZhaoYu.Core.dll
│   │   ├── ZhaoYu.Core.pdb
│   │   ├── ZhaoYu.IRepository.dll
│   │   ├── ZhaoYu.IRepository.pdb
│   │   ├── ZhaoYu.IService.dll
│   │   ├── ZhaoYu.IService.pdb
│   │   ├── ZhaoYu.Models.dll
│   │   ├── ZhaoYu.Models.pdb
│   │   ├── ZhaoYu.Service.deps.json
│   │   ├── ZhaoYu.Service.dll
│   │   ├── ZhaoYu.Service.pdb
│   │   ├── ZhaoYu.Services.deps.json
│   │   ├── ZhaoYu.Services.dll
│   │   ├── ZhaoYu.Services.pdb
│   │   ├── ZhaoYu.ViewModels.dll
│   │   └── ZhaoYu.ViewModels.pdb
│   ├── IDependencyService.cs
│   ├── obj
│   │   ├── Debug
│   │   │   └── netcoreapp2.2
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── ZhaoYu.Service.AssemblyInfo.cs
│   │   │   ├── ZhaoYu.Service.AssemblyInfoInputs.cache
│   │   │   ├── ZhaoYu.Service.assets.cache
│   │   │   ├── ZhaoYu.Service.csprojAssemblyReference.cache
│   │   │   ├── ZhaoYu.Service.csproj.CopyComplete
│   │   │   ├── ZhaoYu.Service.csproj.CoreCompileInputs.cache
│   │   │   ├── ZhaoYu.Service.csproj.FileListAbsolute.txt
│   │   │   ├── ZhaoYu.Service.dll
│   │   │   ├── ZhaoYu.Service.pdb
│   │   │   ├── ZhaoYu.Services.AssemblyInfo.cs
│   │   │   ├── ZhaoYu.Services.AssemblyInfoInputs.cache
│   │   │   ├── ZhaoYu.Services.assets.cache
│   │   │   ├── ZhaoYu.Services.csprojAssemblyReference.cache
│   │   │   ├── ZhaoYu.Services.csproj.CoreCompileInputs.cache
│   │   │   ├── ZhaoYu.Services.csproj.FileListAbsolute.txt
│   │   │   ├── ZhaoYu.Services.dll
│   │   │   └── ZhaoYu.Services.pdb
│   │   ├── project.assets.json
│   │   ├── ZhaoYu.Service.csproj.nuget.cache
│   │   ├── ZhaoYu.Service.csproj.nuget.g.props
│   │   ├── ZhaoYu.Service.csproj.nuget.g.targets
│   │   ├── ZhaoYu.Services.csproj.nuget.cache
│   │   ├── ZhaoYu.Services.csproj.nuget.g.props
│   │   └── ZhaoYu.Services.csproj.nuget.g.targets
│   ├── User
│   │   └── UserService.cs
│   └── ZhaoYu.Service.csproj
├── ZhaoYu.Site
│   ├── appsettings.Development.json
│   ├── appsettings.json
│   ├── bin
│   │   └── Debug
│   │   └── netcoreapp2.2
│   ├── Controllers
│   │   ├── BaseController.cs
│   │   ├── HomeController.cs
│   │   └── LoginController.cs
│   ├── Filter
│   │   ├── AuthFilter.cs
│   │   ├── GlobalExceptionFilter.cs
│   │   ├── PermissionFilter.cs
│   │   └── ResourceFilter.cs
│   ├── Models
│   │   └── ErrorViewModel.cs
│   ├── obj
│   │   ├── Debug
│   │   │   └── netcoreapp2.2
│   │   │   ├── Razor
│   │   │   │   └── Views
│   │   │   │   ├── Home
│   │   │   │   ├── Login
│   │   │   │   └── Shared
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── ZhaoYu.Site.AssemblyInfo.cs
│   │   │   ├── ZhaoYu.Site.AssemblyInfoInputs.cache
│   │   │   ├── ZhaoYu.Site.assets.cache
│   │   │   ├── ZhaoYu.Site.csprojAssemblyReference.cache
│   │   │   ├── ZhaoYu.Site.csproj.CoreCompileInputs.cache
│   │   │   ├── ZhaoYu.Site.csproj.FileListAbsolute.txt
│   │   │   ├── ZhaoYu.Site.dll.config
│   │   │   ├── ZhaoYu.Site.RazorAssemblyInfo.cache
│   │   │   ├── ZhaoYu.Site.RazorAssemblyInfo.cs
│   │   │   └── ZhaoYu.Site.Views.dll
│   │   ├── project.assets.json
│   │   ├── ZhaoYu.Site.csproj.nuget.cache
│   │   ├── ZhaoYu.Site.csproj.nuget.g.props
│   │   └── ZhaoYu.Site.csproj.nuget.g.targets
│   ├── Program.cs
│   ├── Properties
│   │   └── launchSettings.json
│   ├── Startup.cs
│   ├── Validation
│   │   └── ManagerUserValidation.cs
│   ├── Views
│   │   ├── Home
│   │   │   ├── Index.cshtml
│   │   │   └── Privacy.cshtml
│   │   ├── Login
│   │   │   └── Index.cshtml
│   │   ├── Shared
│   │   │   ├── _CookieConsentPartial.cshtml
│   │   │   ├── Error.cshtml
│   │   │   ├── _Layout.cshtml
│   │   │   └── _ValidationScriptsPartial.cshtml
│   │   ├── _ViewImports.cshtml
│   │   └── _ViewStart.cshtml
│   ├── wwwroot
│   │   ├── css
│   │   │   ├── AdminLTE.min.css
│   │   │   ├── all-skins.min.css
│   │   │   ├── bootstrap.min.css
│   │   │   ├── bootstrap-table.min.css
│   │   │   ├── font-awesome.min.css
│   │   │   ├── login.css
│   │   │   ├── main.css
│   │   │   └── site.css
│   │   ├── favicon.ico
│   │   ├── fonts
│   │   │   ├── FontAwesome.otf
│   │   │   ├── fontawesome-webfont.eot
│   │   │   ├── fontawesome-webfont.svg
│   │   │   ├── fontawesome-webfont.ttf
│   │   │   ├── fontawesome-webfont.woff
│   │   │   ├── fontawesome-webfont.woff2
│   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   └── glyphicons-halflings-regular.woff2
│   │   ├── js
│   │   │   ├── common.js
│   │   │   ├── index.js
│   │   │   ├── modules
│   │   │   │   ├── job
│   │   │   │   │   ├── schedule.js
│   │   │   │   │   └── schedule_log.js
│   │   │   │   ├── oss
│   │   │   │   │   └── oss.js
│   │   │   │   └── sys
│   │   │   │   ├── config.js
│   │   │   │   ├── log.js
│   │   │   │   ├── menu.js
│   │   │   │   ├── role.js
│   │   │   │   └── user.js
│   │   │   ├── site.js
│   │   │   └── vue.min.js
│   │   ├── lib
│   │   │   ├── bootstrap
│   │   │   │   ├── dist
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── bootstrap.css
│   │   │   │   │   │   ├── bootstrap.css.map
│   │   │   │   │   │   ├── bootstrap-grid.css
│   │   │   │   │   │   ├── bootstrap-grid.css.map
│   │   │   │   │   │   ├── bootstrap-grid.min.css
│   │   │   │   │   │   ├── bootstrap-grid.min.css.map
│   │   │   │   │   │   ├── bootstrap.min.css
│   │   │   │   │   │   ├── bootstrap.min.css.map
│   │   │   │   │   │   ├── bootstrap-reboot.css
│   │   │   │   │   │   ├── bootstrap-reboot.css.map
│   │   │   │   │   │   ├── bootstrap-reboot.min.css
│   │   │   │   │   │   └── bootstrap-reboot.min.css.map
│   │   │   │   │   └── js
│   │   │   │   │   ├── bootstrap.bundle.js
│   │   │   │   │   ├── bootstrap.bundle.js.map
│   │   │   │   │   ├── bootstrap.bundle.min.js
│   │   │   │   │   ├── bootstrap.bundle.min.js.map
│   │   │   │   │   ├── bootstrap.js
│   │   │   │   │   ├── bootstrap.js.map
│   │   │   │   │   ├── bootstrap.min.js
│   │   │   │   │   └── bootstrap.min.js.map
│   │   │   │   └── LICENSE
│   │   │   ├── jquery
│   │   │   │   ├── dist
│   │   │   │   │   ├── jquery.js
│   │   │   │   │   ├── jquery.min.js
│   │   │   │   │   └── jquery.min.map
│   │   │   │   └── LICENSE.txt
│   │   │   ├── jquery-validation
│   │   │   │   ├── dist
│   │   │   │   │   ├── additional-methods.js
│   │   │   │   │   ├── additional-methods.min.js
│   │   │   │   │   ├── jquery.validate.js
│   │   │   │   │   └── jquery.validate.min.js
│   │   │   │   └── LICENSE.md
│   │   │   └── jquery-validation-unobtrusive
│   │   │   ├── jquery.validate.unobtrusive.js
│   │   │   ├── jquery.validate.unobtrusive.min.js
│   │   │   └── LICENSE.txt
│   │   ├── libs
│   │   │   ├── ajaxupload.js
│   │   │   ├── app.js
│   │   │   ├── bootstrap.min.js
│   │   │   ├── bootstrap-table.min.js
│   │   │   ├── jquery.min.js
│   │   │   ├── router.js
│   │   │   ├── store.js
│   │   │   ├── validator.js
│   │   │   ├── validator.min.js
│   │   │   └── vue.min.js
│   │   ├── LICENSE
│   │   ├── plugins
│   │   │   ├── jqgrid
│   │   │   │   ├── grid.locale-cn.js
│   │   │   │   ├── jquery.jqGrid.min.js
│   │   │   │   ├── ui.jqgrid-bootstrap.css
│   │   │   │   ├── ui.jqgrid-bootstrap-ui.css
│   │   │   │   └── ui.jqgrid.css
│   │   │   ├── layer
│   │   │   │   ├── layer.js
│   │   │   │   ├── mobile
│   │   │   │   │   ├── layer.js
│   │   │   │   │   └── need
│   │   │   │   │   └── layer.css
│   │   │   │   └── skin
│   │   │   │   ├── default
│   │   │   │   │   ├── icon-ext.png
│   │   │   │   │   ├── icon.png
│   │   │   │   │   ├── layer.css
│   │   │   │   │   ├── loading-0.gif
│   │   │   │   │   ├── loading-1.gif
│   │   │   │   │   └── loading-2.gif
│   │   │   │   └── moon
│   │   │   │   ├── default.png
│   │   │   │   └── style.css
│   │   │   ├── treegrid
│   │   │   │   ├── img
│   │   │   │   │   ├── collapse.png
│   │   │   │   │   ├── expand.png
│   │   │   │   │   ├── file.png
│   │   │   │   │   └── folder.png
│   │   │   │   ├── jquery.treegrid.bootstrap3.js
│   │   │   │   ├── jquery.treegrid.css
│   │   │   │   ├── jquery.treegrid.extension.js
│   │   │   │   ├── jquery.treegrid.min.js
│   │   │   │   └── tree.table.js
│   │   │   └── ztree
│   │   │   ├── css
│   │   │   │   ├── awesomeStyle
│   │   │   │   │   ├── awesome.css
│   │   │   │   │   ├── awesome.less
│   │   │   │   │   ├── fa.less
│   │   │   │   │   └── img
│   │   │   │   │   └── loading.gif
│   │   │   │   ├── metroStyle
│   │   │   │   │   ├── img
│   │   │   │   │   │   ├── line_conn.png
│   │   │   │   │   │   ├── loading.gif
│   │   │   │   │   │   ├── metro.gif
│   │   │   │   │   │   └── metro.png
│   │   │   │   │   └── metroStyle.css
│   │   │   │   └── zTreeStyle
│   │   │   │   ├── img
│   │   │   │   │   ├── diy
│   │   │   │   │   │   ├── 1_close.png
│   │   │   │   │   │   ├── 1_open.png
│   │   │   │   │   │   ├── 2.png
│   │   │   │   │   │   ├── 3.png
│   │   │   │   │   │   ├── 4.png
│   │   │   │   │   │   ├── 5.png
│   │   │   │   │   │   ├── 6.png
│   │   │   │   │   │   ├── 7.png
│   │   │   │   │   │   ├── 8.png
│   │   │   │   │   │   └── 9.png
│   │   │   │   │   ├── line_conn.gif
│   │   │   │   │   ├── loading.gif
│   │   │   │   │   ├── zTreeStandard.gif
│   │   │   │   │   └── zTreeStandard.png
│   │   │   │   └── zTreeStyle.css
│   │   │   └── jquery.ztree.all.min.js
│   │   └── README.md
│   ├── ZhaoYu.Site.csproj
│   └── ZhaoYu.Site.csproj.user
├── ZhaoYu.sln
├── ZhaoYu.Test
│   ├── bin
│   │   └── Debug
│   │   └── netcoreapp2.2
│   │   ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
│   │   ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
│   │   ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
│   │   ├── ZhaoYu.Test.deps.json
│   │   ├── ZhaoYu.Test.dll
│   │   ├── ZhaoYu.Test.pdb
│   │   ├── ZhaoYu.Test.runtimeconfig.dev.json
│   │   └── ZhaoYu.Test.runtimeconfig.json
│   ├── obj
│   │   ├── Debug
│   │   │   └── netcoreapp2.2
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── ZhaoYu.Test.AssemblyInfo.cs
│   │   │   ├── ZhaoYu.Test.AssemblyInfoInputs.cache
│   │   │   ├── ZhaoYu.Test.assets.cache
│   │   │   ├── ZhaoYu.Test.csprojAssemblyReference.cache
│   │   │   ├── ZhaoYu.Test.csproj.CoreCompileInputs.cache
│   │   │   ├── ZhaoYu.Test.csproj.FileListAbsolute.txt
│   │   │   ├── ZhaoYu.Test.dll
│   │   │   ├── ZhaoYu.Test.pdb
│   │   │   └── ZhaoYu.Test.Program.cs
│   │   ├── project.assets.json
│   │   ├── ZhaoYu.Test.csproj.nuget.cache
│   │   ├── ZhaoYu.Test.csproj.nuget.g.props
│   │   └── ZhaoYu.Test.csproj.nuget.g.targets
│   ├── UnitTest1.cs
│   └── ZhaoYu.Test.csproj
└── ZhaoYu.ViewModels
├── bin
│   └── Debug
│   └── netcoreapp2.2
│   ├── ZhaoYu.Models.dll
│   ├── ZhaoYu.Models.pdb
│   ├── ZhaoYu.ViewModels.deps.json
│   ├── ZhaoYu.ViewModels.dll
│   └── ZhaoYu.ViewModels.pdb
├── Extention
│   ├── Extention.Byte.cs
│   ├── Extention.DataTable.cs
│   ├── Extention.DateTime.cs
│   ├── Extention.Delegate.cs
│   ├── Extention.ExpandoObject.cs
│   ├── Extention.Expression.cs
│   ├── Extention.Guid.cs
│   ├── Extention.IEnumerable.cs
│   ├── Extention.Int.cs
│   ├── Extention.IQueryable.cs
│   ├── Extention.Object.cs
│   ├── Extention.Stream.cs
│   └── Extention.String.cs
├── obj
│   ├── Debug
│   │   └── netcoreapp2.2
│   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   ├── ZhaoYu.ViewModels.AssemblyInfo.cs
│   │   ├── ZhaoYu.ViewModels.AssemblyInfoInputs.cache
│   │   ├── ZhaoYu.ViewModels.assets.cache
│   │   ├── ZhaoYu.ViewModels.csprojAssemblyReference.cache
│   │   ├── ZhaoYu.ViewModels.csproj.CopyComplete
│   │   ├── ZhaoYu.ViewModels.csproj.CoreCompileInputs.cache
│   │   ├── ZhaoYu.ViewModels.csproj.FileListAbsolute.txt
│   │   ├── ZhaoYu.ViewModels.dll
│   │   └── ZhaoYu.ViewModels.pdb
│   ├── project.assets.json
│   ├── ZhaoYu.ViewModels.csproj.nuget.cache
│   ├── ZhaoYu.ViewModels.csproj.nuget.g.props
│   └── ZhaoYu.ViewModels.csproj.nuget.g.targets
├── ResultModel
│   ├── AjaxResult.cs
│   ├── BaseResult.cs
│   └── ResultCodeMsgKeys.cs
├── User
│   └── Z_USER_Y_VIEWMODEL.cs
├── ZhaoYu.ViewModels.csproj
└── ZhaoYu.ViewModels.csproj.user

223 directories, 748 files

标签:

实例下载地址

ASP.NET Core2.2+Vue.js+mysql+redis开发的网站框架

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警