实例介绍
基于asp.net mvc5,采用bootstrap模板开发的管理后台,包括用户管理,权限管理,登录,日志这几个模块,可以节省一部分时间。支持mssql和mysql,使用时web2017项目引用的类库切换一下即可。创建数据库的脚本在 create_db.sql 文件中。
【实例截图】
【核心代码】
4744300845146910811.rar
├── dao_mysql
│ ├── app.config
│ ├── bin
│ │ ├── Debug
│ │ │ ├── dao_mysql.dll
│ │ │ ├── dao_mysql.dll.config
│ │ │ ├── dao_mysql.pdb
│ │ │ ├── Dapper.dll
│ │ │ ├── Dapper.xml
│ │ │ ├── MySql.Data.dll
│ │ │ ├── YYNET_MODEL.dll
│ │ │ └── YYNET_MODEL.pdb
│ │ └── Release
│ │ ├── dao_mysql.dll
│ │ ├── dao_mysql.dll.config
│ │ ├── dao_mysql.pdb
│ │ ├── Dapper.dll
│ │ ├── Dapper.xml
│ │ ├── MySql.Data.dll
│ │ ├── YYNET_MODEL.dll
│ │ └── YYNET_MODEL.pdb
│ ├── Bll_TB_LOGIN_LOG.cs
│ ├── Bll_TB_OP_LOG.cs
│ ├── Bll_TB_PERMISSION.cs
│ ├── Bll_TB_PERMISSION_Ex.cs
│ ├── Bll_TB_ROLE.cs
│ ├── Bll_TB_ROLE_Ex.cs
│ ├── Bll_TB_ROLE_PERMISSION.cs
│ ├── Bll_TB_USER.cs
│ ├── Bll_TB_USER_Ex.cs
│ ├── Bll_TB_USER_ROLE.cs
│ ├── Common.cs
│ ├── create_db.sql
│ ├── dao_mysql.csproj
│ ├── DbConfig.cs
│ ├── DES.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── dao_mysql.csproj.FileListAbsolute.txt
│ │ │ ├── dao_mysql.csprojResolveAssemblyReference.cache
│ │ │ ├── dao_mysql.dll
│ │ │ ├── dao_mysql.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ └── Release
│ │ ├── dao_mysql.csproj.FileListAbsolute.txt
│ │ ├── dao_mysql.csprojResolveAssemblyReference.cache
│ │ ├── dao_mysql.dll
│ │ ├── dao_mysql.pdb
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── TempPE
│ ├── packages.config
│ └── Properties
│ └── AssemblyInfo.cs
├── dao_sql
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Dapper.dll
│ │ │ ├── Dapper.xml
│ │ │ ├── x64
│ │ │ ├── x86
│ │ │ ├── YYNET_MODEL.dll
│ │ │ ├── YYNET_MODEL.pdb
│ │ │ ├── YYNET_SQL.dll
│ │ │ └── YYNET_SQL.pdb
│ │ └── Release
│ │ ├── Dapper.dll
│ │ ├── Dapper.xml
│ │ ├── YYNET_MODEL.dll
│ │ ├── YYNET_MODEL.pdb
│ │ ├── YYNET_SQL.dll
│ │ └── YYNET_SQL.pdb
│ ├── Bll_TB_LOGIN_LOG.cs
│ ├── Bll_TB_OP_LOG.cs
│ ├── Bll_TB_PERMISSION.cs
│ ├── Bll_TB_PERMISSION_Ex.cs
│ ├── Bll_TB_ROLE.cs
│ ├── Bll_TB_ROLE_Ex.cs
│ ├── Bll_TB_ROLE_PERMISSION.cs
│ ├── Bll_TB_USER.cs
│ ├── Bll_TB_USER_Ex.cs
│ ├── Bll_TB_USER_ROLE.cs
│ ├── Common.cs
│ ├── create_db.sql
│ ├── dao_sql.csproj
│ ├── dao_sql.csproj.user
│ ├── DbConfig.cs
│ ├── DES.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── CoreCompileInputs.cache
│ │ │ ├── dao_sql.csproj.FileListAbsolute.txt
│ │ │ ├── dao_sql.csprojResolveAssemblyReference.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── TempPE
│ │ │ ├── YYNET_SQL.dll
│ │ │ └── YYNET_SQL.pdb
│ │ └── Release
│ │ ├── build.force
│ │ ├── dao_sql.csproj.FileListAbsolute.txt
│ │ ├── dao_sql.csprojResolveAssemblyReference.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TempPE
│ │ ├── YYNET_SQL.dll
│ │ └── YYNET_SQL.pdb
│ ├── packages.config
│ └── Properties
│ └── AssemblyInfo.cs
├── model
│ ├── bin
│ │ ├── Debug
│ │ │ ├── YYNET_MODEL.dll
│ │ │ └── YYNET_MODEL.pdb
│ │ └── Release
│ │ ├── YYNET_MODEL.dll
│ │ └── YYNET_MODEL.pdb
│ ├── ILOGINLOG.cs
│ ├── IOPLOG.cs
│ ├── IPERMISSION.cs
│ ├── IROLE.cs
│ ├── IRolePermission.cs
│ ├── IUSER.cs
│ ├── IUSERROLE.cs
│ ├── model.csproj
│ ├── obj
│ │ ├── Debug
│ │ │ ├── CoreCompileInputs.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── model.csproj.FileListAbsolute.txt
│ │ │ ├── model.csprojResolveAssemblyReference.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── TempPE
│ │ │ ├── YYNET_MODEL.dll
│ │ │ └── YYNET_MODEL.pdb
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── model.csproj.FileListAbsolute.txt
│ │ ├── model.csprojResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ ├── YYNET_MODEL.dll
│ │ └── YYNET_MODEL.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── TB_LOGIN_LOG.cs
│ ├── TB_OP_LOG.cs
│ ├── TB_PERMISSION.cs
│ ├── TB_ROLE.cs
│ ├── TB_ROLE_PERMISSION.cs
│ ├── TB_USER.cs
│ └── TB_USER_ROLE.cs
├── packages
│ ├── Antlr.3.4.1.9004
│ │ ├── Antlr.3.4.1.9004.nupkg
│ │ └── lib
│ │ ├── Antlr3.Runtime.dll
│ │ └── Antlr3.Runtime.pdb
│ ├── bootstrap.3.0.0
│ │ ├── bootstrap.3.0.0.nupkg
│ │ └── content
│ │ ├── Content
│ │ │ ├── bootstrap.css
│ │ │ └── bootstrap.min.css
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ └── glyphicons-halflings-regular.woff
│ │ └── Scripts
│ │ ├── bootstrap.js
│ │ └── bootstrap.min.js
│ ├── CommonServiceLocator.1.3
│ │ ├── CommonServiceLocator.1.3.nupkg
│ │ └── lib
│ │ └── portable-net4+sl5+netcore45+wpa81+wp8
│ │ ├── Microsoft.Practices.ServiceLocation.dll
│ │ ├── Microsoft.Practices.ServiceLocation.pdb
│ │ └── Microsoft.Practices.ServiceLocation.XML
│ ├── Dapper.1.50.2
│ │ ├── Dapper.1.50.2.nupkg
│ │ └── lib
│ │ ├── net40
│ │ │ ├── Dapper.dll
│ │ │ └── Dapper.xml
│ │ ├── net45
│ │ │ ├── Dapper.dll
│ │ │ └── Dapper.xml
│ │ ├── net451
│ │ │ ├── Dapper.dll
│ │ │ └── Dapper.xml
│ │ └── netstandard1.3
│ │ ├── Dapper.dll
│ │ └── Dapper.xml
│ ├── jQuery.1.10.2
│ │ ├── Content
│ │ │ └── Scripts
│ │ │ ├── jquery-1.10.2.js
│ │ │ ├── jquery-1.10.2.min.js
│ │ │ ├── jquery-1.10.2.min.map
│ │ │ └── jquery-1.10.2-vsdoc.js
│ │ ├── jQuery.1.10.2.nupkg
│ │ └── Tools
│ │ ├── common.ps1
│ │ ├── install.ps1
│ │ ├── jquery-1.10.2.intellisense.js
│ │ └── uninstall.ps1
│ ├── jQuery.Validation.1.11.1
│ │ ├── Content
│ │ │ └── Scripts
│ │ │ ├── jquery.validate.js
│ │ │ ├── jquery.validate.min.js
│ │ │ └── jquery.validate-vsdoc.js
│ │ └── jQuery.Validation.1.11.1.nupkg
│ ├── Microsoft.ApplicationInsights.2.1.0
│ │ ├── lib
│ │ │ ├── dotnet5.4
│ │ │ │ ├── Microsoft.ApplicationInsights.dll
│ │ │ │ └── Microsoft.ApplicationInsights.XML
│ │ │ ├── net40
│ │ │ │ ├── Microsoft.ApplicationInsights.dll
│ │ │ │ └── Microsoft.ApplicationInsights.XML
│ │ │ ├── net45
│ │ │ │ ├── Microsoft.ApplicationInsights.dll
│ │ │ │ └── Microsoft.ApplicationInsights.XML
│ │ │ ├── net46
│ │ │ │ ├── Microsoft.ApplicationInsights.dll
│ │ │ │ └── Microsoft.ApplicationInsights.XML
│ │ │ ├── portable-win81%2Bwpa81
│ │ │ │ └── Microsoft.ApplicationInsights.dll
│ │ │ ├── uap10.0
│ │ │ │ └── Microsoft.ApplicationInsights.dll
│ │ │ └── wp8
│ │ │ └── Microsoft.ApplicationInsights.dll
│ │ └── Microsoft.ApplicationInsights.2.1.0.nupkg
│ ├── Microsoft.ApplicationInsights.Agent.Intercept.1.2.1
│ │ ├── lib
│ │ │ ├── net40
│ │ │ │ └── Microsoft.AI.Agent.Intercept.dll
│ │ │ └── net45
│ │ │ └── Microsoft.AI.Agent.Intercept.dll
│ │ └── Microsoft.ApplicationInsights.Agent.Intercept.1.2.1.nupkg
│ ├── Microsoft.ApplicationInsights.DependencyCollector.2.1.0
│ │ ├── content
│ │ │ ├── ApplicationInsights.config.install.xdt
│ │ │ ├── ApplicationInsights.config.transform
│ │ │ └── ApplicationInsights.config.uninstall.xdt
│ │ ├── lib
│ │ │ ├── net40
│ │ │ │ ├── Microsoft.AI.DependencyCollector.dll
│ │ │ │ └── Microsoft.AI.DependencyCollector.XML
│ │ │ └── net45
│ │ │ ├── Microsoft.AI.DependencyCollector.dll
│ │ │ └── Microsoft.AI.DependencyCollector.XML
│ │ └── Microsoft.ApplicationInsights.DependencyCollector.2.1.0.nupkg
│ ├── Microsoft.ApplicationInsights.PerfCounterCollector.2.1.0
│ │ ├── content
│ │ │ ├── ApplicationInsights.config.install.xdt
│ │ │ ├── ApplicationInsights.config.transform
│ │ │ └── ApplicationInsights.config.uninstall.xdt
│ │ ├── lib
│ │ │ ├── net40
│ │ │ │ └── Microsoft.AI.PerfCounterCollector.dll
│ │ │ └── net45
│ │ │ └── Microsoft.AI.PerfCounterCollector.dll
│ │ └── Microsoft.ApplicationInsights.PerfCounterCollector.2.1.0.nupkg
│ ├── Microsoft.ApplicationInsights.Web.2.1.0
│ │ ├── content
│ │ │ ├── net40
│ │ │ │ ├── ApplicationInsights.config.install.xdt
│ │ │ │ ├── ApplicationInsights.config.transform
│ │ │ │ ├── ApplicationInsights.config.uninstall.xdt
│ │ │ │ ├── web.config.install.xdt
│ │ │ │ └── web.config.uninstall.xdt
│ │ │ └── net45
│ │ │ ├── ApplicationInsights.config.install.xdt
│ │ │ ├── ApplicationInsights.config.transform
│ │ │ ├── ApplicationInsights.config.uninstall.xdt
│ │ │ ├── web.config.install.xdt
│ │ │ └── web.config.uninstall.xdt
│ │ ├── lib
│ │ │ ├── net40
│ │ │ │ ├── Microsoft.AI.Web.dll
│ │ │ │ └── Microsoft.AI.Web.XML
│ │ │ └── net45
│ │ │ ├── Microsoft.AI.Web.dll
│ │ │ └── Microsoft.AI.Web.XML
│ │ └── Microsoft.ApplicationInsights.Web.2.1.0.nupkg
│ ├── Microsoft.ApplicationInsights.WindowsServer.2.1.0
│ │ ├── content
│ │ │ ├── ApplicationInsights.config.install.xdt
│ │ │ ├── ApplicationInsights.config.transform
│ │ │ └── ApplicationInsights.config.uninstall.xdt
│ │ ├── lib
│ │ │ ├── net40
│ │ │ │ ├── Microsoft.AI.WindowsServer.dll
│ │ │ │ └── Microsoft.AI.WindowsServer.XML
│ │ │ └── net45
│ │ │ ├── Microsoft.AI.WindowsServer.dll
│ │ │ └── Microsoft.AI.WindowsServer.XML
│ │ ├── Microsoft.ApplicationInsights.WindowsServer.2.1.0.nupkg
│ │ └── Tools
│ │ └── install.ps1
│ ├── Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.1.0
│ │ ├── content
│ │ │ ├── ApplicationInsights.config.install.xdt
│ │ │ ├── ApplicationInsights.config.transform
│ │ │ └── ApplicationInsights.config.uninstall.xdt
│ │ ├── lib
│ │ │ ├── net40
│ │ │ │ ├── Microsoft.AI.ServerTelemetryChannel.dll
│ │ │ │ └── Microsoft.AI.ServerTelemetryChannel.XML
│ │ │ └── net45
│ │ │ ├── Microsoft.AI.ServerTelemetryChannel.dll
│ │ │ └── Microsoft.AI.ServerTelemetryChannel.XML
│ │ └── Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.1.0.nupkg
│ ├── Microsoft.AspNet.Mvc.5.2.3
│ │ ├── Content
│ │ │ ├── Web.config.install.xdt
│ │ │ └── Web.config.uninstall.xdt
│ │ ├── lib
│ │ │ └── net45
│ │ │ ├── System.Web.Mvc.dll
│ │ │ ├── System.Web.Mvc.xml
│ │ │ └── zh-Hans
│ │ │ ├── System.Web.Mvc.resources.dll
│ │ │ └── System.Web.Mvc.xml
│ │ └── Microsoft.AspNet.Mvc.5.2.3.nupkg
│ ├── Microsoft.AspNet.Mvc.zh-Hans.5.2.3
│ │ ├── lib
│ │ │ └── net45
│ │ │ └── zh-Hans
│ │ │ ├── System.Web.Mvc.resources.dll
│ │ │ └── System.Web.Mvc.xml
│ │ └── Microsoft.AspNet.Mvc.zh-Hans.5.2.3.nupkg
│ ├── Microsoft.AspNet.Razor.3.2.3
│ │ ├── lib
│ │ │ └── net45
│ │ │ ├── System.Web.Razor.dll
│ │ │ ├── System.Web.Razor.xml
│ │ │ └── zh-Hans
│ │ │ ├── System.Web.Razor.resources.dll
│ │ │ └── system.web.razor.xml
│ │ └── Microsoft.AspNet.Razor.3.2.3.nupkg
│ ├── Microsoft.AspNet.Razor.zh-Hans.3.2.3
│ │ ├── lib
│ │ │ └── net45
│ │ │ └── zh-Hans
│ │ │ ├── System.Web.Razor.resources.dll
│ │ │ └── system.web.razor.xml
│ │ └── Microsoft.AspNet.Razor.zh-Hans.3.2.3.nupkg
│ ├── Microsoft.AspNet.WebApi.5.2.3
│ │ └── Microsoft.AspNet.WebApi.5.2.3.nupkg
│ ├── Microsoft.AspNet.WebApi.Client.5.2.3
│ │ ├── lib
│ │ │ ├── net45
│ │ │ │ ├── System.Net.Http.Formatting.dll
│ │ │ │ ├── System.Net.Http.Formatting.xml
│ │ │ │ └── zh-Hans
│ │ │ │ ├── System.Net.Http.Formatting.resources.dll
│ │ │ │ └── System.Net.Http.Formatting.xml
│ │ │ └── portable-wp8%2Bnetcore45%2Bnet45%2Bwp81%2Bwpa81
│ │ │ ├── System.Net.Http.Formatting.dll
│ │ │ └── System.Net.Http.Formatting.xml
│ │ └── Microsoft.AspNet.WebApi.Client.5.2.3.nupkg
│ ├── Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3
│ │ ├── lib
│ │ │ └── net45
│ │ │ └── zh-Hans
│ │ │ ├── System.Net.Http.Formatting.resources.dll
│ │ │ └── System.Net.Http.Formatting.xml
│ │ └── Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3.nupkg
│ ├── Microsoft.AspNet.WebApi.Core.5.2.3
│ │ ├── Content
│ │ │ └── web.config.transform
│ │ ├── lib
│ │ │ └── net45
│ │ │ ├── System.Web.Http.dll
│ │ │ ├── System.Web.Http.xml
│ │ │ └── zh-Hans
│ │ │ ├── System.Web.Http.resources.dll
│ │ │ └── System.Web.Http.xml
│ │ └── Microsoft.AspNet.WebApi.Core.5.2.3.nupkg
│ ├── Microsoft.AspNet.WebApi.Core.zh-Hans.5.2.3
│ │ ├── lib
│ │ │ └── net45
│ │ │ └── zh-Hans
│ │ │ ├── System.Web.Http.resources.dll
│ │ │ └── System.Web.Http.xml
│ │ └── Microsoft.AspNet.WebApi.Core.zh-Hans.5.2.3.nupkg
│ ├── Microsoft.AspNet.WebApi.WebHost.5.2.3
│ │ ├── lib
│ │ │ └── net45
│ │ │ ├── System.Web.Http.WebHost.dll
│ │ │ ├── System.Web.Http.WebHost.xml
│ │ │ └── zh-Hans
│ │ │ ├── System.Web.Http.WebHost.resources.dll
│ │ │ └── System.Web.Http.WebHost.xml
│ │ └── Microsoft.AspNet.WebApi.WebHost.5.2.3.nupkg
│ ├── Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.2.3
│ │ ├── lib
│ │ │ └── net45
│ │ │ └── zh-Hans
│ │ │ ├── System.Web.Http.WebHost.resources.dll
│ │ │ └── System.Web.Http.WebHost.xml
│ │ └── Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.2.3.nupkg
│ ├── Microsoft.AspNet.Web.Optimization.1.1.3
│ │ ├── lib
│ │ │ └── net40
│ │ │ ├── System.Web.Optimization.dll
│ │ │ ├── system.web.optimization.xml
│ │ │ └── zh-Hans
│ │ │ └── System.Web.Optimization.resources.dll
│ │ └── Microsoft.AspNet.Web.Optimization.1.1.3.nupkg
│ ├── Microsoft.AspNet.Web.Optimization.zh-Hans.1.1.3
│ │ ├── lib
│ │ │ └── net40
│ │ │ └── zh-Hans
│ │ │ └── System.Web.Optimization.resources.dll
│ │ └── Microsoft.AspNet.Web.Optimization.zh-Hans.1.1.3.nupkg
│ ├── Microsoft.AspNet.WebPages.3.2.3
│ │ ├── Content
│ │ │ ├── Web.config.install.xdt
│ │ │ └── Web.config.uninstall.xdt
│ │ ├── lib
│ │ │ └── net45
│ │ │ ├── System.Web.Helpers.dll
│ │ │ ├── System.Web.Helpers.xml
│ │ │ ├── System.Web.WebPages.Deployment.dll
│ │ │ ├── System.Web.WebPages.Deployment.xml
│ │ │ ├── System.Web.WebPages.dll
│ │ │ ├── System.Web.WebPages.Razor.dll
│ │ │ ├── System.Web.WebPages.Razor.xml
│ │ │ ├── System.Web.WebPages.xml
│ │ │ └── zh-Hans
│ │ │ ├── System.Web.Helpers.resources.dll
│ │ │ ├── system.web.helpers.xml
│ │ │ ├── System.Web.WebPages.Deployment.resources.dll
│ │ │ ├── system.web.webpages.deployment.xml
│ │ │ ├── System.Web.WebPages.Razor.resources.dll
│ │ │ ├── system.web.webpages.razor.xml
│ │ │ ├── System.Web.WebPages.resources.dll
│ │ │ └── system.web.webpages.xml
│ │ └── Microsoft.AspNet.WebPages.3.2.3.nupkg
│ ├── Microsoft.AspNet.WebPages.zh-Hans.3.2.3
│ │ ├── lib
│ │ │ └── net45
│ │ │ └── zh-Hans
│ │ │ ├── System.Web.Helpers.resources.dll
│ │ │ ├── system.web.helpers.xml
│ │ │ ├── System.Web.WebPages.Deployment.resources.dll
│ │ │ ├── system.web.webpages.deployment.xml
│ │ │ ├── System.Web.WebPages.Razor.resources.dll
│ │ │ ├── system.web.webpages.razor.xml
│ │ │ ├── System.Web.WebPages.resources.dll
│ │ │ └── system.web.webpages.xml
│ │ └── Microsoft.AspNet.WebPages.zh-Hans.3.2.3.nupkg
│ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.2
│ │ ├── build
│ │ │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props
│ │ ├── content
│ │ │ ├── web.config.install.xdt
│ │ │ └── web.config.uninstall.xdt
│ │ ├── lib
│ │ │ └── net45
│ │ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
│ │ │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
│ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.2.nupkg
│ │ └── tools
│ │ ├── install.ps1
│ │ └── uninstall.ps1
│ ├── Microsoft.jQuery.Unobtrusive.Validation.3.2.3
│ │ ├── Content
│ │ │ └── Scripts
│ │ │ ├── jquery.validate.unobtrusive.js
│ │ │ └── jquery.validate.unobtrusive.min.js
│ │ └── Microsoft.jQuery.Unobtrusive.Validation.3.2.3.nupkg
│ ├── Microsoft.Net.Compilers.1.3.2
│ │ ├── build
│ │ │ └── Microsoft.Net.Compilers.props
│ │ ├── Microsoft.Net.Compilers.1.3.2.nupkg
│ │ ├── ThirdPartyNotices.rtf
│ │ └── tools
│ │ ├── csc.exe
│ │ ├── csc.exe.config
│ │ ├── csc.rsp
│ │ ├── csi.exe
│ │ ├── csi.rsp
│ │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll
│ │ ├── Microsoft.CodeAnalysis.dll
│ │ ├── Microsoft.CodeAnalysis.Scripting.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.dll
│ │ ├── Microsoft.CSharp.Core.targets
│ │ ├── Microsoft.DiaSymReader.Native.amd64.dll
│ │ ├── Microsoft.DiaSymReader.Native.x86.dll
│ │ ├── Microsoft.VisualBasic.Core.targets
│ │ ├── System.AppContext.dll
│ │ ├── System.Collections.Immutable.dll
│ │ ├── System.Diagnostics.StackTrace.dll
│ │ ├── System.IO.FileSystem.dll
│ │ ├── System.IO.FileSystem.Primitives.dll
│ │ ├── System.Reflection.Metadata.dll
│ │ ├── vbc.exe
│ │ ├── vbc.exe.config
│ │ ├── vbc.rsp
│ │ ├── VBCSCompiler.exe
│ │ └── VBCSCompiler.exe.config
│ ├── Microsoft.Web.Infrastructure.1.0.0.0
│ │ ├── lib
│ │ │ └── net40
│ │ │ └── Microsoft.Web.Infrastructure.dll
│ │ ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg
│ │ └── tools
│ │ ├── Install.ps1
│ │ ├── Uninstall.ps1
│ │ ├── VS.psd1
│ │ └── VS.psm1
│ ├── Modernizr.2.6.2
│ │ ├── Content
│ │ │ └── Scripts
│ │ │ └── modernizr-2.6.2.js
│ │ ├── Modernizr.2.6.2.nupkg
│ │ └── Tools
│ │ ├── common.ps1
│ │ ├── install.ps1
│ │ └── uninstall.ps1
│ ├── MySql.Data.6.9.9
│ │ ├── CHANGES
│ │ ├── content
│ │ │ ├── app.config.transform
│ │ │ └── web.config.transform
│ │ ├── lib
│ │ │ ├── net40
│ │ │ │ └── MySql.Data.dll
│ │ │ └── net45
│ │ │ └── MySql.Data.dll
│ │ ├── MySql.Data.6.9.9.nupkg
│ │ └── Readme.txt
│ ├── Newtonsoft.Json.6.0.4
│ │ ├── lib
│ │ │ ├── net20
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── net35
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── net40
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── net45
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── netcore45
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── portable-net40%2Bsl5%2Bwp80%2Bwin8%2Bwpa81
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ └── portable-net45%2Bwp80%2Bwin8%2Bwpa81
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ ├── Newtonsoft.Json.6.0.4.nupkg
│ │ └── tools
│ │ └── install.ps1
│ ├── NLog.3.2.1
│ │ ├── lib
│ │ │ ├── net35
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── net40
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── net45
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── sl4
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ └── sl5
│ │ │ ├── NLog.dll
│ │ │ └── NLog.xml
│ │ └── NLog.3.2.1.nupkg
│ ├── PagedList.1.17.0.0
│ │ ├── lib
│ │ │ └── net40
│ │ │ ├── PagedList.dll
│ │ │ └── PagedList.xml
│ │ └── PagedList.1.17.0.0.nupkg
│ ├── PagedList.Mvc.4.5.0.0
│ │ ├── Content
│ │ │ └── Content
│ │ │ └── PagedList.css
│ │ ├── lib
│ │ │ └── net40
│ │ │ ├── PagedList.Mvc.dll
│ │ │ └── PagedList.Mvc.XML
│ │ └── PagedList.Mvc.4.5.0.0.nupkg
│ ├── Respond.1.2.0
│ │ ├── content
│ │ │ └── Scripts
│ │ │ ├── respond.js
│ │ │ └── respond.min.js
│ │ └── Respond.1.2.0.nupkg
│ ├── Unity.4.0.1
│ │ ├── lib
│ │ │ ├── net45
│ │ │ │ ├── Microsoft.Practices.Unity.Configuration.dll
│ │ │ │ ├── Microsoft.Practices.Unity.Configuration.XML
│ │ │ │ ├── Microsoft.Practices.Unity.dll
│ │ │ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.dll
│ │ │ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.XML
│ │ │ │ └── Microsoft.Practices.Unity.xml
│ │ │ ├── portable-net45+wp80+win8+wpa81+MonoAndroid10+MonoTouch10
│ │ │ │ ├── Microsoft.Practices.Unity.dll
│ │ │ │ └── Microsoft.Practices.Unity.xml
│ │ │ ├── win8
│ │ │ │ ├── Microsoft.Practices.Unity.dll
│ │ │ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.dll
│ │ │ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.pri
│ │ │ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.XML
│ │ │ │ └── Microsoft.Practices.Unity.xml
│ │ │ └── wp80
│ │ │ ├── Microsoft.Practices.Unity.dll
│ │ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.dll
│ │ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.XML
│ │ │ └── Microsoft.Practices.Unity.xml
│ │ ├── Unity.4.0.1.nupkg
│ │ └── UnityConfiguration30.xsd
│ └── WebGrease.1.5.2
│ ├── lib
│ │ └── WebGrease.dll
│ ├── tools
│ │ └── WG.exe
│ └── WebGrease.1.5.2.nupkg
├── TestApp
│ ├── App.config
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Dapper.dll
│ │ │ ├── Dapper.xml
│ │ │ ├── Microsoft.Practices.ServiceLocation.dll
│ │ │ ├── Microsoft.Practices.ServiceLocation.pdb
│ │ │ ├── Microsoft.Practices.ServiceLocation.xml
│ │ │ ├── Microsoft.Practices.Unity.Configuration.dll
│ │ │ ├── Microsoft.Practices.Unity.Configuration.xml
│ │ │ ├── Microsoft.Practices.Unity.dll
│ │ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.dll
│ │ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.xml
│ │ │ ├── Microsoft.Practices.Unity.xml
│ │ │ ├── TestApp.exe
│ │ │ ├── TestApp.exe.config
│ │ │ ├── TestApp.pdb
│ │ │ ├── YYNET_MODEL.dll
│ │ │ ├── YYNET_MODEL.pdb
│ │ │ ├── YYNET_SQL.dll
│ │ │ └── YYNET_SQL.pdb
│ │ └── Release
│ ├── obj
│ │ ├── Debug
│ │ │ ├── CoreCompileInputs.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── TempPE
│ │ │ ├── TestApp.csproj.FileListAbsolute.txt
│ │ │ ├── TestApp.csprojResolveAssemblyReference.cache
│ │ │ ├── TestApp.exe
│ │ │ └── TestApp.pdb
│ │ └── Release
│ │ ├── build.force
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ └── TempPE
│ ├── packages.config
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── TestApp.csproj
├── web2017
│ ├── App_Data
│ ├── ApplicationInsights.config
│ ├── App_Start
│ │ ├── BundleConfig.cs
│ │ ├── FilterConfig.cs
│ │ ├── RouteConfig.cs
│ │ └── WebApiConfig.cs
│ ├── aspnet_client
│ │ └── system_web
│ │ ├── 2_0_50727
│ │ └── 4_0_30319
│ ├── avatar5.png
│ ├── bin
│ │ ├── Antlr3.Runtime.dll
│ │ ├── Antlr3.Runtime.pdb
│ │ ├── ApplicationInsights.config
│ │ ├── dao_mysql.dll
│ │ ├── dao_mysql.pdb
│ │ ├── Dapper.dll
│ │ ├── Dapper.xml
│ │ ├── Microsoft.AI.Agent.Intercept.dll
│ │ ├── Microsoft.AI.DependencyCollector.dll
│ │ ├── Microsoft.AI.DependencyCollector.xml
│ │ ├── Microsoft.AI.PerfCounterCollector.dll
│ │ ├── Microsoft.AI.ServerTelemetryChannel.dll
│ │ ├── Microsoft.AI.ServerTelemetryChannel.xml
│ │ ├── Microsoft.AI.Web.dll
│ │ ├── Microsoft.AI.Web.xml
│ │ ├── Microsoft.AI.WindowsServer.dll
│ │ ├── Microsoft.AI.WindowsServer.xml
│ │ ├── Microsoft.ApplicationInsights.dll
│ │ ├── Microsoft.ApplicationInsights.xml
│ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
│ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
│ │ ├── Microsoft.Practices.ServiceLocation.dll
│ │ ├── Microsoft.Practices.ServiceLocation.pdb
│ │ ├── Microsoft.Practices.ServiceLocation.xml
│ │ ├── Microsoft.Practices.Unity.Configuration.dll
│ │ ├── Microsoft.Practices.Unity.Configuration.xml
│ │ ├── Microsoft.Practices.Unity.dll
│ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.dll
│ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.xml
│ │ ├── Microsoft.Practices.Unity.xml
│ │ ├── Microsoft.Web.Infrastructure.dll
│ │ ├── MySql.Data.dll
│ │ ├── Newtonsoft.Json.dll
│ │ ├── Newtonsoft.Json.xml
│ │ ├── PagedList.dll
│ │ ├── PagedList.Mvc.dll
│ │ ├── PagedList.Mvc.xml
│ │ ├── PagedList.xml
│ │ ├── roslyn
│ │ │ ├── csc.exe
│ │ │ ├── csc.exe.config
│ │ │ ├── csc.rsp
│ │ │ ├── csi.exe
│ │ │ ├── csi.rsp
│ │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll
│ │ │ ├── Microsoft.CodeAnalysis.CSharp.dll
│ │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll
│ │ │ ├── Microsoft.CodeAnalysis.dll
│ │ │ ├── Microsoft.CodeAnalysis.Scripting.dll
│ │ │ ├── Microsoft.CodeAnalysis.VisualBasic.dll
│ │ │ ├── Microsoft.CSharp.Core.targets
│ │ │ ├── Microsoft.DiaSymReader.Native.amd64.dll
│ │ │ ├── Microsoft.DiaSymReader.Native.x86.dll
│ │ │ ├── Microsoft.VisualBasic.Core.targets
│ │ │ ├── System.AppContext.dll
│ │ │ ├── System.Collections.Immutable.dll
│ │ │ ├── System.Diagnostics.StackTrace.dll
│ │ │ ├── System.IO.FileSystem.dll
│ │ │ ├── System.IO.FileSystem.Primitives.dll
│ │ │ ├── System.Reflection.Metadata.dll
│ │ │ ├── vbc.exe
│ │ │ ├── vbc.exe.config
│ │ │ ├── vbc.rsp
│ │ │ ├── VBCSCompiler.exe
│ │ │ └── VBCSCompiler.exe.config
│ │ ├── System.Net.Http.Formatting.dll
│ │ ├── System.Net.Http.Formatting.xml
│ │ ├── System.Web.Helpers.dll
│ │ ├── System.Web.Helpers.xml
│ │ ├── System.Web.Http.dll
│ │ ├── System.Web.Http.WebHost.dll
│ │ ├── System.Web.Http.WebHost.xml
│ │ ├── System.Web.Http.xml
│ │ ├── System.Web.Mvc.dll
│ │ ├── System.Web.Mvc.xml
│ │ ├── System.Web.Optimization.dll
│ │ ├── System.Web.Optimization.xml
│ │ ├── System.Web.Razor.dll
│ │ ├── System.Web.Razor.xml
│ │ ├── System.Web.WebPages.Deployment.dll
│ │ ├── System.Web.WebPages.Deployment.xml
│ │ ├── System.Web.WebPages.dll
│ │ ├── System.Web.WebPages.Razor.dll
│ │ ├── System.Web.WebPages.Razor.xml
│ │ ├── System.Web.WebPages.xml
│ │ ├── WebGrease.dll
│ │ ├── YYNET_MODEL.dll
│ │ ├── YYNET_MODEL.pdb
│ │ ├── YYNET_SQL.dll
│ │ ├── YYNET_SQL.pdb
│ │ ├── YYNET_WEB.dll
│ │ ├── YYNET_WEB.dll.config
│ │ ├── YYNET_WEB.pdb
│ │ └── zh-Hans
│ │ ├── System.Net.Http.Formatting.resources.dll
│ │ ├── System.Web.Helpers.resources.dll
│ │ ├── System.Web.Http.resources.dll
│ │ ├── System.Web.Http.WebHost.resources.dll
│ │ ├── System.Web.Mvc.resources.dll
│ │ ├── System.Web.Optimization.resources.dll
│ │ ├── System.Web.Razor.resources.dll
│ │ ├── System.Web.WebPages.Deployment.resources.dll
│ │ ├── System.Web.WebPages.Razor.resources.dll
│ │ └── System.Web.WebPages.resources.dll
│ ├── Code
│ │ ├── Bll_Utilitity.cs
│ │ ├── CollectionUtilitity.cs
│ │ ├── CommonConfig.cs
│ │ ├── CookieHelper.cs
│ │ ├── IpHelper.cs
│ │ ├── PermissionHelper.cs
│ │ └── Validator.cs
│ ├── Content
│ │ ├── AdminLTE.css
│ │ ├── bootstrap.css
│ │ ├── bootstrap.min.css
│ │ ├── bootstrap-slider
│ │ │ └── slider.css
│ │ ├── bootstrap-wysihtml5
│ │ │ ├── bootstrap3-wysihtml5.css
│ │ │ └── bootstrap3-wysihtml5.min.css
│ │ ├── colorpicker
│ │ │ ├── bootstrap-colorpicker.css
│ │ │ └── bootstrap-colorpicker.min.css
│ │ ├── datatables
│ │ │ ├── dataTables.bootstrap.css
│ │ │ └── images
│ │ │ ├── sort_asc_disabled.png
│ │ │ ├── sort_asc.png
│ │ │ ├── sort_both.png
│ │ │ ├── sort_desc_disabled.png
│ │ │ └── sort_desc.png
│ │ ├── daterangepicker
│ │ │ └── daterangepicker-bs3.css
│ │ ├── font-awesome.css
│ │ ├── font-awesome.min.css
│ │ ├── fullcalendar
│ │ │ ├── fullcalendar.css
│ │ │ └── fullcalendar.print.css
│ │ ├── iCheck
│ │ │ ├── all.css
│ │ │ ├── flat
│ │ │ │ ├── aero@2x.png
│ │ │ │ ├── aero.css
│ │ │ │ ├── aero.png
│ │ │ │ ├── _all.css
│ │ │ │ ├── blue@2x.png
│ │ │ │ ├── blue.css
│ │ │ │ ├── blue.png
│ │ │ │ ├── flat@2x.png
│ │ │ │ ├── flat.css
│ │ │ │ ├── flat.png
│ │ │ │ ├── green@2x.png
│ │ │ │ ├── green.css
│ │ │ │ ├── green.png
│ │ │ │ ├── grey@2x.png
│ │ │ │ ├── grey.css
│ │ │ │ ├── grey.png
│ │ │ │ ├── orange@2x.png
│ │ │ │ ├── orange.css
│ │ │ │ ├── orange.png
│ │ │ │ ├── pink@2x.png
│ │ │ │ ├── pink.css
│ │ │ │ ├── pink.png
│ │ │ │ ├── purple@2x.png
│ │ │ │ ├── purple.css
│ │ │ │ ├── purple.png
│ │ │ │ ├── red@2x.png
│ │ │ │ ├── red.css
│ │ │ │ ├── red.png
│ │ │ │ ├── yellow@2x.png
│ │ │ │ ├── yellow.css
│ │ │ │ └── yellow.png
│ │ │ ├── futurico
│ │ │ │ ├── futurico@2x.png
│ │ │ │ ├── futurico.css
│ │ │ │ └── futurico.png
│ │ │ ├── line
│ │ │ │ ├── aero.css
│ │ │ │ ├── _all.css
│ │ │ │ ├── blue.css
│ │ │ │ ├── green.css
│ │ │ │ ├── grey.css
│ │ │ │ ├── line@2x.png
│ │ │ │ ├── line.css
│ │ │ │ ├── line.png
│ │ │ │ ├── orange.css
│ │ │ │ ├── pink.css
│ │ │ │ ├── purple.css
│ │ │ │ ├── red.css
│ │ │ │ └── yellow.css
│ │ │ ├── minimal
│ │ │ │ ├── aero@2x.png
│ │ │ │ ├── aero.css
│ │ │ │ ├── aero.png
│ │ │ │ ├── _all.css
│ │ │ │ ├── blue@2x.png
│ │ │ │ ├── blue.css
│ │ │ │ ├── blue.png
│ │ │ │ ├── green@2x.png
│ │ │ │ ├── green.css
│ │ │ │ ├── green.png
│ │ │ │ ├── grey@2x.png
│ │ │ │ ├── grey.css
│ │ │ │ ├── grey.png
│ │ │ │ ├── minimal@2x.png
│ │ │ │ ├── minimal.css
│ │ │ │ ├── minimal.png
│ │ │ │ ├── orange@2x.png
│ │ │ │ ├── orange.css
│ │ │ │ ├── orange.png
│ │ │ │ ├── pink@2x.png
│ │ │ │ ├── pink.css
│ │ │ │ ├── pink.png
│ │ │ │ ├── purple@2x.png
│ │ │ │ ├── purple.css
│ │ │ │ ├── purple.png
│ │ │ │ ├── red@2x.png
│ │ │ │ ├── red.css
│ │ │ │ ├── red.png
│ │ │ │ ├── yellow@2x.png
│ │ │ │ ├── yellow.css
│ │ │ │ └── yellow.png
│ │ │ ├── polaris
│ │ │ │ ├── polaris@2x.png
│ │ │ │ ├── polaris.css
│ │ │ │ └── polaris.png
│ │ │ └── square
│ │ │ ├── aero@2x.png
│ │ │ ├── aero.css
│ │ │ ├── aero.png
│ │ │ ├── _all.css
│ │ │ ├── blue@2x.png
│ │ │ ├── blue.css
│ │ │ ├── blue.png
│ │ │ ├── green@2x.png
│ │ │ ├── green.css
│ │ │ ├── green.png
│ │ │ ├── grey@2x.png
│ │ │ ├── grey.css
│ │ │ ├── grey.png
│ │ │ ├── orange@2x.png
│ │ │ ├── orange.css
│ │ │ ├── orange.png
│ │ │ ├── pink@2x.png
│ │ │ ├── pink.css
│ │ │ ├── pink.png
│ │ │ ├── purple@2x.png
│ │ │ ├── purple.css
│ │ │ ├── purple.png
│ │ │ ├── red@2x.png
│ │ │ ├── red.css
│ │ │ ├── red.png
│ │ │ ├── square@2x.png
│ │ │ ├── square.css
│ │ │ ├── square.png
│ │ │ ├── yellow@2x.png
│ │ │ ├── yellow.css
│ │ │ └── yellow.png
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ ├── ui-bg_flat_55_fbec88_40x100.png
│ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png
│ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png
│ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png
│ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png
│ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png
│ │ │ ├── ui-icons_217bc0_256x240.png
│ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ ├── ui-icons_469bdd_256x240.png
│ │ │ ├── ui-icons_6da8d5_256x240.png
│ │ │ ├── ui-icons_cd0a0a_256x240.png
│ │ │ ├── ui-icons_d8e7f3_256x240.png
│ │ │ └── ui-icons_f9bd01_256x240.png
│ │ ├── ionicons.css
│ │ ├── ionicons.min.css
│ │ ├── ionslider
│ │ │ ├── ion.rangeSlider.css
│ │ │ ├── ion.rangeSlider.skinFlat.css
│ │ │ └── ion.rangeSlider.skinNice.css
│ │ ├── jQueryUI
│ │ │ ├── images
│ │ │ │ ├── animated-overlay.gif
│ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ ├── ui-bg_flat_100_e6e7e8_40x100.png
│ │ │ │ ├── ui-bg_flat_100_f56954_40x100.png
│ │ │ │ ├── ui-bg_flat_55_f39c12_40x100.png
│ │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png
│ │ │ │ ├── ui-bg_flat_75_dadada_40x100.png
│ │ │ │ ├── ui-bg_flat_75_e6e6e6_40x100.png
│ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui-1.10.3.custom.css
│ │ │ └── jquery-ui-1.10.3.custom.min.css
│ │ ├── jvectormap
│ │ │ └── jquery-jvectormap-1.2.2.css
│ │ ├── morris
│ │ │ └── morris.css
│ │ ├── PagedList.css
│ │ ├── Site.css
│ │ ├── timepicker
│ │ │ ├── bootstrap-timepicker.css
│ │ │ └── bootstrap-timepicker.min.css
│ │ └── uploadify
│ │ ├── jquery.uploadify-3.1.js
│ │ ├── jquery.uploadify-3.1.min.js
│ │ ├── uploadify-cancel.png
│ │ ├── uploadify.css
│ │ └── uploadify.swf
│ ├── Controllers
│ │ ├── BoardController.cs
│ │ ├── HomeController.cs
│ │ ├── LoginController.cs
│ │ ├── LoginLogController.cs
│ │ ├── OpLogController.cs
│ │ ├── PermissionController.cs
│ │ ├── RoleController.cs
│ │ ├── UploadifyController.cs
│ │ └── UserController.cs
│ ├── doc
│ │ └── help.docx
│ ├── favicon.ico
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ ├── ionicons.eot
│ │ ├── ionicons.svg
│ │ ├── ionicons.ttf
│ │ └── ionicons.woff
│ ├── Global.asax
│ ├── Global.asax.cs
│ ├── Img
│ │ ├── ajax-loader1.gif
│ │ ├── ajax-loader.gif
│ │ ├── avatar04.png
│ │ ├── avatar2.png
│ │ ├── avatar3.png
│ │ ├── avatar5.png
│ │ ├── avatar.png
│ │ ├── blur-background04.jpg
│ │ ├── blur-background08.jpg
│ │ ├── blur-background09.jpg
│ │ ├── bootstrap-colorpicker
│ │ │ ├── alpha-horizontal.png
│ │ │ ├── alpha.png
│ │ │ ├── hue-horizontal.png
│ │ │ ├── hue.png
│ │ │ └── saturation.png
│ │ ├── credit
│ │ │ ├── american-express.png
│ │ │ ├── cirrus.png
│ │ │ ├── mastercard.png
│ │ │ ├── mestro.png
│ │ │ ├── paypal2.png
│ │ │ ├── paypal.png
│ │ │ └── visa.png
│ │ ├── icons.png
│ │ ├── sprite-skin-flat.png
│ │ ├── sprite-skin-nice.png
│ │ ├── user2.jpg
│ │ ├── user-bg.png
│ │ └── user.jpg
│ ├── Models
│ ├── obj
│ │ ├── Debug
│ │ │ ├── CoreCompileInputs.cache
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── TempPE
│ │ │ ├── web2017.csproj.FileListAbsolute.txt
│ │ │ ├── web2017.csprojResolveAssemblyReference.cache
│ │ │ ├── YYNET_WEB.dll
│ │ │ └── YYNET_WEB.pdb
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Package
│ │ │ └── PackageTmp
│ │ │ ├── ApplicationInsights.config
│ │ │ ├── bin
│ │ │ │ ├── Antlr3.Runtime.dll
│ │ │ │ ├── ApplicationInsights.config
│ │ │ │ ├── dao_mysql.dll
│ │ │ │ ├── Dapper.dll
│ │ │ │ ├── Microsoft.AI.Agent.Intercept.dll
│ │ │ │ ├── Microsoft.AI.DependencyCollector.dll
│ │ │ │ ├── Microsoft.AI.PerfCounterCollector.dll
│ │ │ │ ├── Microsoft.AI.ServerTelemetryChannel.dll
│ │ │ │ ├── Microsoft.AI.Web.dll
│ │ │ │ ├── Microsoft.AI.WindowsServer.dll
│ │ │ │ ├── Microsoft.ApplicationInsights.dll
│ │ │ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
│ │ │ │ ├── Microsoft.Practices.ServiceLocation.dll
│ │ │ │ ├── Microsoft.Practices.Unity.Configuration.dll
│ │ │ │ ├── Microsoft.Practices.Unity.dll
│ │ │ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.dll
│ │ │ │ ├── Microsoft.Web.Infrastructure.dll
│ │ │ │ ├── MySql.Data.dll
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── PagedList.dll
│ │ │ │ ├── PagedList.Mvc.dll
│ │ │ │ ├── roslyn
│ │ │ │ │ ├── csc.exe
│ │ │ │ │ ├── csc.exe.config
│ │ │ │ │ ├── csc.rsp
│ │ │ │ │ ├── csi.exe
│ │ │ │ │ ├── csi.rsp
│ │ │ │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll
│ │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.dll
│ │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll
│ │ │ │ │ ├── Microsoft.CodeAnalysis.dll
│ │ │ │ │ ├── Microsoft.CodeAnalysis.Scripting.dll
│ │ │ │ │ ├── Microsoft.CodeAnalysis.VisualBasic.dll
│ │ │ │ │ ├── Microsoft.CSharp.Core.targets
│ │ │ │ │ ├── Microsoft.DiaSymReader.Native.amd64.dll
│ │ │ │ │ ├── Microsoft.DiaSymReader.Native.x86.dll
│ │ │ │ │ ├── Microsoft.VisualBasic.Core.targets
│ │ │ │ │ ├── System.AppContext.dll
│ │ │ │ │ ├── System.Collections.Immutable.dll
│ │ │ │ │ ├── System.Diagnostics.StackTrace.dll
│ │ │ │ │ ├── System.IO.FileSystem.dll
│ │ │ │ │ ├── System.IO.FileSystem.Primitives.dll
│ │ │ │ │ ├── System.Reflection.Metadata.dll
│ │ │ │ │ ├── vbc.exe
│ │ │ │ │ ├── vbc.exe.config
│ │ │ │ │ ├── vbc.rsp
│ │ │ │ │ ├── VBCSCompiler.exe
│ │ │ │ │ └── VBCSCompiler.exe.config
│ │ │ │ ├── System.Net.Http.Formatting.dll
│ │ │ │ ├── System.Web.Helpers.dll
│ │ │ │ ├── System.Web.Http.dll
│ │ │ │ ├── System.Web.Http.WebHost.dll
│ │ │ │ ├── System.Web.Mvc.dll
│ │ │ │ ├── System.Web.Optimization.dll
│ │ │ │ ├── System.Web.Razor.dll
│ │ │ │ ├── System.Web.WebPages.Deployment.dll
│ │ │ │ ├── System.Web.WebPages.dll
│ │ │ │ ├── System.Web.WebPages.Razor.dll
│ │ │ │ ├── WebGrease.dll
│ │ │ │ ├── YYNET_MODEL.dll
│ │ │ │ ├── YYNET_WEB.dll
│ │ │ │ └── zh-Hans
│ │ │ │ ├── System.Net.Http.Formatting.resources.dll
│ │ │ │ ├── System.Web.Helpers.resources.dll
│ │ │ │ ├── System.Web.Http.resources.dll
│ │ │ │ ├── System.Web.Http.WebHost.resources.dll
│ │ │ │ ├── System.Web.Mvc.resources.dll
│ │ │ │ ├── System.Web.Optimization.resources.dll
│ │ │ │ ├── System.Web.Razor.resources.dll
│ │ │ │ ├── System.Web.WebPages.Deployment.resources.dll
│ │ │ │ ├── System.Web.WebPages.Razor.resources.dll
│ │ │ │ └── System.Web.WebPages.resources.dll
│ │ │ ├── Content
│ │ │ │ ├── AdminLTE.css
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── bootstrap-slider
│ │ │ │ │ └── slider.css
│ │ │ │ ├── bootstrap-wysihtml5
│ │ │ │ │ ├── bootstrap3-wysihtml5.css
│ │ │ │ │ └── bootstrap3-wysihtml5.min.css
│ │ │ │ ├── colorpicker
│ │ │ │ │ ├── bootstrap-colorpicker.css
│ │ │ │ │ └── bootstrap-colorpicker.min.css
│ │ │ │ ├── datatables
│ │ │ │ │ ├── dataTables.bootstrap.css
│ │ │ │ │ └── images
│ │ │ │ │ ├── sort_asc_disabled.png
│ │ │ │ │ ├── sort_asc.png
│ │ │ │ │ ├── sort_both.png
│ │ │ │ │ ├── sort_desc_disabled.png
│ │ │ │ │ └── sort_desc.png
│ │ │ │ ├── daterangepicker
│ │ │ │ │ └── daterangepicker-bs3.css
│ │ │ │ ├── font-awesome.css
│ │ │ │ ├── font-awesome.min.css
│ │ │ │ ├── fullcalendar
│ │ │ │ │ ├── fullcalendar.css
│ │ │ │ │ └── fullcalendar.print.css
│ │ │ │ ├── iCheck
│ │ │ │ │ ├── all.css
│ │ │ │ │ ├── flat
│ │ │ │ │ │ ├── aero@2x.png
│ │ │ │ │ │ ├── aero.css
│ │ │ │ │ │ ├── aero.png
│ │ │ │ │ │ ├── _all.css
│ │ │ │ │ │ ├── blue@2x.png
│ │ │ │ │ │ ├── blue.css
│ │ │ │ │ │ ├── blue.png
│ │ │ │ │ │ ├── flat@2x.png
│ │ │ │ │ │ ├── flat.css
│ │ │ │ │ │ ├── flat.png
│ │ │ │ │ │ ├── green@2x.png
│ │ │ │ │ │ ├── green.css
│ │ │ │ │ │ ├── green.png
│ │ │ │ │ │ ├── grey@2x.png
│ │ │ │ │ │ ├── grey.css
│ │ │ │ │ │ ├── grey.png
│ │ │ │ │ │ ├── orange@2x.png
│ │ │ │ │ │ ├── orange.css
│ │ │ │ │ │ ├── orange.png
│ │ │ │ │ │ ├── pink@2x.png
│ │ │ │ │ │ ├── pink.css
│ │ │ │ │ │ ├── pink.png
│ │ │ │ │ │ ├── purple@2x.png
│ │ │ │ │ │ ├── purple.css
│ │ │ │ │ │ ├── purple.png
│ │ │ │ │ │ ├── red@2x.png
│ │ │ │ │ │ ├── red.css
│ │ │ │ │ │ ├── red.png
│ │ │ │ │ │ ├── yellow@2x.png
│ │ │ │ │ │ ├── yellow.css
│ │ │ │ │ │ └── yellow.png
│ │ │ │ │ ├── futurico
│ │ │ │ │ │ ├── futurico@2x.png
│ │ │ │ │ │ ├── futurico.css
│ │ │ │ │ │ └── futurico.png
│ │ │ │ │ ├── line
│ │ │ │ │ │ ├── aero.css
│ │ │ │ │ │ ├── _all.css
│ │ │ │ │ │ ├── blue.css
│ │ │ │ │ │ ├── green.css
│ │ │ │ │ │ ├── grey.css
│ │ │ │ │ │ ├── line@2x.png
│ │ │ │ │ │ ├── line.css
│ │ │ │ │ │ ├── line.png
│ │ │ │ │ │ ├── orange.css
│ │ │ │ │ │ ├── pink.css
│ │ │ │ │ │ ├── purple.css
│ │ │ │ │ │ ├── red.css
│ │ │ │ │ │ └── yellow.css
│ │ │ │ │ ├── minimal
│ │ │ │ │ │ ├── aero@2x.png
│ │ │ │ │ │ ├── aero.css
│ │ │ │ │ │ ├── aero.png
│ │ │ │ │ │ ├── _all.css
│ │ │ │ │ │ ├── blue@2x.png
│ │ │ │ │ │ ├── blue.css
│ │ │ │ │ │ ├── blue.png
│ │ │ │ │ │ ├── green@2x.png
│ │ │ │ │ │ ├── green.css
│ │ │ │ │ │ ├── green.png
│ │ │ │ │ │ ├── grey@2x.png
│ │ │ │ │ │ ├── grey.css
│ │ │ │ │ │ ├── grey.png
│ │ │ │ │ │ ├── minimal@2x.png
│ │ │ │ │ │ ├── minimal.css
│ │ │ │ │ │ ├── minimal.png
│ │ │ │ │ │ ├── orange@2x.png
│ │ │ │ │ │ ├── orange.css
│ │ │ │ │ │ ├── orange.png
│ │ │ │ │ │ ├── pink@2x.png
│ │ │ │ │ │ ├── pink.css
│ │ │ │ │ │ ├── pink.png
│ │ │ │ │ │ ├── purple@2x.png
│ │ │ │ │ │ ├── purple.css
│ │ │ │ │ │ ├── purple.png
│ │ │ │ │ │ ├── red@2x.png
│ │ │ │ │ │ ├── red.css
│ │ │ │ │ │ ├── red.png
│ │ │ │ │ │ ├── yellow@2x.png
│ │ │ │ │ │ ├── yellow.css
│ │ │ │ │ │ └── yellow.png
│ │ │ │ │ ├── polaris
│ │ │ │ │ │ ├── polaris@2x.png
│ │ │ │ │ │ ├── polaris.css
│ │ │ │ │ │ └── polaris.png
│ │ │ │ │ └── square
│ │ │ │ │ ├── aero@2x.png
│ │ │ │ │ ├── aero.css
│ │ │ │ │ ├── aero.png
│ │ │ │ │ ├── _all.css
│ │ │ │ │ ├── blue@2x.png
│ │ │ │ │ ├── blue.css
│ │ │ │ │ ├── blue.png
│ │ │ │ │ ├── green@2x.png
│ │ │ │ │ ├── green.css
│ │ │ │ │ ├── green.png
│ │ │ │ │ ├── grey@2x.png
│ │ │ │ │ ├── grey.css
│ │ │ │ │ ├── grey.png
│ │ │ │ │ ├── orange@2x.png
│ │ │ │ │ ├── orange.css
│ │ │ │ │ ├── orange.png
│ │ │ │ │ ├── pink@2x.png
│ │ │ │ │ ├── pink.css
│ │ │ │ │ ├── pink.png
│ │ │ │ │ ├── purple@2x.png
│ │ │ │ │ ├── purple.css
│ │ │ │ │ ├── purple.png
│ │ │ │ │ ├── red@2x.png
│ │ │ │ │ ├── red.css
│ │ │ │ │ ├── red.png
│ │ │ │ │ ├── square@2x.png
│ │ │ │ │ ├── square.css
│ │ │ │ │ ├── square.png
│ │ │ │ │ ├── yellow@2x.png
│ │ │ │ │ ├── yellow.css
│ │ │ │ │ └── yellow.png
│ │ │ │ ├── images
│ │ │ │ │ ├── animated-overlay.gif
│ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png
│ │ │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png
│ │ │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png
│ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png
│ │ │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png
│ │ │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png
│ │ │ │ │ ├── ui-icons_217bc0_256x240.png
│ │ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ │ ├── ui-icons_469bdd_256x240.png
│ │ │ │ │ ├── ui-icons_6da8d5_256x240.png
│ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png
│ │ │ │ │ ├── ui-icons_d8e7f3_256x240.png
│ │ │ │ │ └── ui-icons_f9bd01_256x240.png
│ │ │ │ ├── ionicons.css
│ │ │ │ ├── ionicons.min.css
│ │ │ │ ├── ionslider
│ │ │ │ │ ├── ion.rangeSlider.css
│ │ │ │ │ ├── ion.rangeSlider.skinFlat.css
│ │ │ │ │ └── ion.rangeSlider.skinNice.css
│ │ │ │ ├── jQueryUI
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── animated-overlay.gif
│ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ │ │ ├── ui-bg_flat_100_e6e7e8_40x100.png
│ │ │ │ │ │ ├── ui-bg_flat_100_f56954_40x100.png
│ │ │ │ │ │ ├── ui-bg_flat_55_f39c12_40x100.png
│ │ │ │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png
│ │ │ │ │ │ ├── ui-bg_flat_75_dadada_40x100.png
│ │ │ │ │ │ ├── ui-bg_flat_75_e6e6e6_40x100.png
│ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ │ │ ├── jquery-ui-1.10.3.custom.css
│ │ │ │ │ └── jquery-ui-1.10.3.custom.min.css
│ │ │ │ ├── jvectormap
│ │ │ │ │ └── jquery-jvectormap-1.2.2.css
│ │ │ │ ├── morris
│ │ │ │ │ └── morris.css
│ │ │ │ ├── PagedList.css
│ │ │ │ ├── Site.css
│ │ │ │ ├── timepicker
│ │ │ │ │ ├── bootstrap-timepicker.css
│ │ │ │ │ └── bootstrap-timepicker.min.css
│ │ │ │ └── uploadify
│ │ │ │ ├── jquery.uploadify-3.1.js
│ │ │ │ ├── jquery.uploadify-3.1.min.js
│ │ │ │ ├── uploadify-cancel.png
│ │ │ │ ├── uploadify.css
│ │ │ │ └── uploadify.swf
│ │ │ ├── favicon.ico
│ │ │ ├── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ ├── ionicons.eot
│ │ │ │ ├── ionicons.svg
│ │ │ │ ├── ionicons.ttf
│ │ │ │ └── ionicons.woff
│ │ │ ├── Global.asax
│ │ │ ├── Img
│ │ │ │ ├── ajax-loader1.gif
│ │ │ │ ├── ajax-loader.gif
│ │ │ │ ├── avatar04.png
│ │ │ │ ├── avatar2.png
│ │ │ │ ├── avatar3.png
│ │ │ │ ├── avatar5.png
│ │ │ │ ├── avatar.png
│ │ │ │ ├── blur-background04.jpg
│ │ │ │ ├── blur-background08.jpg
│ │ │ │ ├── blur-background09.jpg
│ │ │ │ ├── bootstrap-colorpicker
│ │ │ │ │ ├── alpha-horizontal.png
│ │ │ │ │ ├── alpha.png
│ │ │ │ │ ├── hue-horizontal.png
│ │ │ │ │ ├── hue.png
│ │ │ │ │ └── saturation.png
│ │ │ │ ├── credit
│ │ │ │ │ ├── american-express.png
│ │ │ │ │ ├── cirrus.png
│ │ │ │ │ ├── mastercard.png
│ │ │ │ │ ├── mestro.png
│ │ │ │ │ ├── paypal2.png
│ │ │ │ │ ├── paypal.png
│ │ │ │ │ └── visa.png
│ │ │ │ ├── icons.png
│ │ │ │ ├── sprite-skin-flat.png
│ │ │ │ ├── sprite-skin-nice.png
│ │ │ │ ├── user2.jpg
│ │ │ │ ├── user-bg.png
│ │ │ │ └── user.jpg
│ │ │ ├── packages.config
│ │ │ ├── Scripts
│ │ │ │ ├── AdminLTE
│ │ │ │ │ ├── app.js
│ │ │ │ │ └── dashboard.js
│ │ │ │ ├── bootstrap.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── html5shiv.js
│ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ ├── jquery-1.10.2.min.map
│ │ │ │ ├── jquery-ui-1.10.3.js
│ │ │ │ ├── jquery-ui-1.10.3.min.js
│ │ │ │ ├── jquery.validate.js
│ │ │ │ ├── jquery.validate.min.js
│ │ │ │ ├── jquery.validate.unobtrusive.js
│ │ │ │ ├── jquery.validate.unobtrusive.min.js
│ │ │ │ ├── modernizr-2.6.2.js
│ │ │ │ ├── plugins
│ │ │ │ │ ├── bootstrap-slider
│ │ │ │ │ │ └── bootstrap-slider.js
│ │ │ │ │ ├── bootstrap-wysihtml5
│ │ │ │ │ │ ├── bootstrap3-wysihtml5.all.min.js
│ │ │ │ │ │ └── bootstrap3-wysihtml5.js
│ │ │ │ │ ├── ckeditor
│ │ │ │ │ │ ├── adapters
│ │ │ │ │ │ │ └── jquery.js
│ │ │ │ │ │ ├── build-config.js
│ │ │ │ │ │ ├── CHANGES.md
│ │ │ │ │ │ ├── ckeditor.js
│ │ │ │ │ │ ├── config.js
│ │ │ │ │ │ ├── contents.css
│ │ │ │ │ │ ├── lang
│ │ │ │ │ │ │ ├── af.js
│ │ │ │ │ │ │ ├── ar.js
│ │ │ │ │ │ │ ├── bg.js
│ │ │ │ │ │ │ ├── bn.js
│ │ │ │ │ │ │ ├── bs.js
│ │ │ │ │ │ │ ├── ca.js
│ │ │ │ │ │ │ ├── cs.js
│ │ │ │ │ │ │ ├── cy.js
│ │ │ │ │ │ │ ├── da.js
│ │ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ │ ├── el.js
│ │ │ │ │ │ │ ├── en-au.js
│ │ │ │ │ │ │ ├── en-ca.js
│ │ │ │ │ │ │ ├── en-gb.js
│ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ ├── eo.js
│ │ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ │ ├── et.js
│ │ │ │ │ │ │ ├── eu.js
│ │ │ │ │ │ │ ├── fa.js
│ │ │ │ │ │ │ ├── fi.js
│ │ │ │ │ │ │ ├── fo.js
│ │ │ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ │ ├── gl.js
│ │ │ │ │ │ │ ├── gu.js
│ │ │ │ │ │ │ ├── he.js
│ │ │ │ │ │ │ ├── hi.js
│ │ │ │ │ │ │ ├── hr.js
│ │ │ │ │ │ │ ├── hu.js
│ │ │ │ │ │ │ ├── id.js
│ │ │ │ │ │ │ ├── is.js
│ │ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ │ ├── ja.js
│ │ │ │ │ │ │ ├── ka.js
│ │ │ │ │ │ │ ├── km.js
│ │ │ │ │ │ │ ├── ko.js
│ │ │ │ │ │ │ ├── ku.js
│ │ │ │ │ │ │ ├── lt.js
│ │ │ │ │ │ │ ├── lv.js
│ │ │ │ │ │ │ ├── mk.js
│ │ │ │ │ │ │ ├── mn.js
│ │ │ │ │ │ │ ├── ms.js
│ │ │ │ │ │ │ ├── nb.js
│ │ │ │ │ │ │ ├── nl.js
│ │ │ │ │ │ │ ├── no.js
│ │ │ │ │ │ │ ├── pl.js
│ │ │ │ │ │ │ ├── pt-br.js
│ │ │ │ │ │ │ ├── pt.js
│ │ │ │ │ │ │ ├── ro.js
│ │ │ │ │ │ │ ├── ru.js
│ │ │ │ │ │ │ ├── si.js
│ │ │ │ │ │ │ ├── sk.js
│ │ │ │ │ │ │ ├── sl.js
│ │ │ │ │ │ │ ├── sq.js
│ │ │ │ │ │ │ ├── sr.js
│ │ │ │ │ │ │ ├── sr-latn.js
│ │ │ │ │ │ │ ├── sv.js
│ │ │ │ │ │ │ ├── th.js
│ │ │ │ │ │ │ ├── tr.js
│ │ │ │ │ │ │ ├── ug.js
│ │ │ │ │ │ │ ├── uk.js
│ │ │ │ │ │ │ ├── vi.js
│ │ │ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ │ │ └── zh.js
│ │ │ │ │ │ ├── LICENSE.md
│ │ │ │ │ │ ├── plugins
│ │ │ │ │ │ │ ├── a11yhelp
│ │ │ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ │ │ ├── a11yhelp.js
│ │ │ │ │ │ │ │ └── lang
│ │ │ │ │ │ │ │ ├── ar.js
│ │ │ │ │ │ │ │ ├── bg.js
│ │ │ │ │ │ │ │ ├── ca.js
│ │ │ │ │ │ │ │ ├── cs.js
│ │ │ │ │ │ │ │ ├── cy.js
│ │ │ │ │ │ │ │ ├── da.js
│ │ │ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ │ │ ├── el.js
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ ├── eo.js
│ │ │ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ │ │ ├── et.js
│ │ │ │ │ │ │ │ ├── fa.js
│ │ │ │ │ │ │ │ ├── fi.js
│ │ │ │ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ │ │ ├── gl.js
│ │ │ │ │ │ │ │ ├── gu.js
│ │ │ │ │ │ │ │ ├── he.js
│ │ │ │ │ │ │ │ ├── hi.js
│ │ │ │ │ │ │ │ ├── hr.js
│ │ │ │ │ │ │ │ ├── hu.js
│ │ │ │ │ │ │ │ ├── id.js
│ │ │ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ │ │ ├── ja.js
│ │ │ │ │ │ │ │ ├── km.js
│ │ │ │ │ │ │ │ ├── ko.js
│ │ │ │ │ │ │ │ ├── ku.js
│ │ │ │ │ │ │ │ ├── lt.js
│ │ │ │ │ │ │ │ ├── lv.js
│ │ │ │ │ │ │ │ ├── mk.js
│ │ │ │ │ │ │ │ ├── mn.js
│ │ │ │ │ │ │ │ ├── nb.js
│ │ │ │ │ │ │ │ ├── nl.js
│ │ │ │ │ │ │ │ ├── no.js
│ │ │ │ │ │ │ │ ├── pl.js
│ │ │ │ │ │ │ │ ├── pt-br.js
│ │ │ │ │ │ │ │ ├── pt.js
│ │ │ │ │ │ │ │ ├── ro.js
│ │ │ │ │ │ │ │ ├── ru.js
│ │ │ │ │ │ │ │ ├── si.js
│ │ │ │ │ │ │ │ ├── sk.js
│ │ │ │ │ │ │ │ ├── sl.js
│ │ │ │ │ │ │ │ ├── sq.js
│ │ │ │ │ │ │ │ ├── sr.js
│ │ │ │ │ │ │ │ ├── sr-latn.js
│ │ │ │ │ │ │ │ ├── sv.js
│ │ │ │ │ │ │ │ ├── th.js
│ │ │ │ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ │ │ │ ├── tr.js
│ │ │ │ │ │ │ │ ├── ug.js
│ │ │ │ │ │ │ │ ├── uk.js
│ │ │ │ │ │ │ │ ├── vi.js
│ │ │ │ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ │ │ │ └── zh.js
│ │ │ │ │ │ │ ├── about
│ │ │ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ │ │ ├── about.js
│ │ │ │ │ │ │ │ ├── hidpi
│ │ │ │ │ │ │ │ │ └── logo_ckeditor.png
│ │ │ │ │ │ │ │ └── logo_ckeditor.png
│ │ │ │ │ │ │ ├── clipboard
│ │ │ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ │ │ └── paste.js
│ │ │ │ │ │ │ ├── dialog
│ │ │ │ │ │ │ │ └── dialogDefinition.js
│ │ │ │ │ │ │ ├── fakeobjects
│ │ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ │ └── spacer.gif
│ │ │ │ │ │ │ ├── icons_hidpi.png
│ │ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ │ ├── image
│ │ │ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ │ │ └── image.js
│ │ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ │ └── noimage.png
│ │ │ │ │ │ │ ├── link
│ │ │ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ │ │ ├── anchor.js
│ │ │ │ │ │ │ │ │ └── link.js
│ │ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ │ ├── anchor.png
│ │ │ │ │ │ │ │ └── hidpi
│ │ │ │ │ │ │ │ └── anchor.png
│ │ │ │ │ │ │ ├── magicline
│ │ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ │ ├── hidpi
│ │ │ │ │ │ │ │ │ └── icon.png
│ │ │ │ │ │ │ │ └── icon.png
│ │ │ │ │ │ │ ├── pastefromword
│ │ │ │ │ │ │ │ └── filter
│ │ │ │ │ │ │ │ └── default.js
│ │ │ │ │ │ │ ├── scayt
│ │ │ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ │ │ ├── options.js
│ │ │ │ │ │ │ │ │ └── toolbar.css
│ │ │ │ │ │ │ │ ├── LICENSE.md
│ │ │ │ │ │ │ │ └── README.md
│ │ │ │ │ │ │ ├── specialchar
│ │ │ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ │ │ ├── lang
│ │ │ │ │ │ │ │ │ ├── ar.js
│ │ │ │ │ │ │ │ │ ├── bg.js
│ │ │ │ │ │ │ │ │ ├── ca.js
│ │ │ │ │ │ │ │ │ ├── cs.js
│ │ │ │ │ │ │ │ │ ├── cy.js
│ │ │ │ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ │ │ │ ├── el.js
│ │ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ │ ├── eo.js
│ │ │ │ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ │ │ │ ├── et.js
│ │ │ │ │ │ │ │ │ ├── fa.js
│ │ │ │ │ │ │ │ │ ├── fi.js
│ │ │ │ │ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ │ │ │ ├── gl.js
│ │ │ │ │ │ │ │ │ ├── he.js
│ │ │ │ │ │ │ │ │ ├── hr.js
│ │ │ │ │ │ │ │ │ ├── hu.js
│ │ │ │ │ │ │ │ │ ├── id.js
│ │ │ │ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ │ │ │ ├── ja.js
│ │ │ │ │ │ │ │ │ ├── km.js
│ │ │ │ │ │ │ │ │ ├── ku.js
│ │ │ │ │ │ │ │ │ ├── lv.js
│ │ │ │ │ │ │ │ │ ├── nb.js
│ │ │ │ │ │ │ │ │ ├── nl.js
│ │ │ │ │ │ │ │ │ ├── no.js
│ │ │ │ │ │ │ │ │ ├── pl.js
│ │ │ │ │ │ │ │ │ ├── pt-br.js
│ │ │ │ │ │ │ │ │ ├── pt.js
│ │ │ │ │ │ │ │ │ ├── ru.js
│ │ │ │ │ │ │ │ │ ├── si.js
│ │ │ │ │ │ │ │ │ ├── sk.js
│ │ │ │ │ │ │ │ │ ├── sl.js
│ │ │ │ │ │ │ │ │ ├── sq.js
│ │ │ │ │ │ │ │ │ ├── sv.js
│ │ │ │ │ │ │ │ │ ├── th.js
│ │ │ │ │ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ │ │ │ │ ├── tr.js
│ │ │ │ │ │ │ │ │ ├── ug.js
│ │ │ │ │ │ │ │ │ ├── uk.js
│ │ │ │ │ │ │ │ │ ├── vi.js
│ │ │ │ │ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ │ │ │ │ └── zh.js
│ │ │ │ │ │ │ │ └── specialchar.js
│ │ │ │ │ │ │ ├── table
│ │ │ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ │ │ └── table.js
│ │ │ │ │ │ │ ├── tabletools
│ │ │ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ │ │ └── tableCell.js
│ │ │ │ │ │ │ └── wsc
│ │ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ │ ├── ciframe.html
│ │ │ │ │ │ │ │ ├── tmpFrameset.html
│ │ │ │ │ │ │ │ ├── tmp.html
│ │ │ │ │ │ │ │ ├── wsc.css
│ │ │ │ │ │ │ │ ├── wsc_ie.js
│ │ │ │ │ │ │ │ └── wsc.js
│ │ │ │ │ │ │ ├── LICENSE.md
│ │ │ │ │ │ │ └── README.md
│ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ ├── skins
│ │ │ │ │ │ │ └── moono
│ │ │ │ │ │ │ ├── dialog.css
│ │ │ │ │ │ │ ├── dialog_ie7.css
│ │ │ │ │ │ │ ├── dialog_ie8.css
│ │ │ │ │ │ │ ├── dialog_ie.css
│ │ │ │ │ │ │ ├── dialog_iequirks.css
│ │ │ │ │ │ │ ├── dialog_opera.css
│ │ │ │ │ │ │ ├── editor.css
│ │ │ │ │ │ │ ├── editor_gecko.css
│ │ │ │ │ │ │ ├── editor_ie7.css
│ │ │ │ │ │ │ ├── editor_ie8.css
│ │ │ │ │ │ │ ├── editor_ie.css
│ │ │ │ │ │ │ ├── editor_iequirks.css
│ │ │ │ │ │ │ ├── icons_hidpi.png
│ │ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── arrow.png
│ │ │ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ │ │ ├── hidpi
│ │ │ │ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ │ │ │ ├── lock-open.png
│ │ │ │ │ │ │ │ │ ├── lock.png
│ │ │ │ │ │ │ │ │ └── refresh.png
│ │ │ │ │ │ │ │ ├── lock-open.png
│ │ │ │ │ │ │ │ ├── lock.png
│ │ │ │ │ │ │ │ └── refresh.png
│ │ │ │ │ │ │ └── readme.md
│ │ │ │ │ │ └── styles.js
│ │ │ │ │ ├── colorpicker
│ │ │ │ │ │ ├── bootstrap-colorpicker.js
│ │ │ │ │ │ └── bootstrap-colorpicker.min.js
│ │ │ │ │ ├── datatables
│ │ │ │ │ │ ├── dataTables.bootstrap.js
│ │ │ │ │ │ └── jquery.dataTables.js
│ │ │ │ │ ├── daterangepicker
│ │ │ │ │ │ └── daterangepicker.js
│ │ │ │ │ ├── flot
│ │ │ │ │ │ ├── excanvas.js
│ │ │ │ │ │ ├── excanvas.min.js
│ │ │ │ │ │ ├── jquery.colorhelpers.js
│ │ │ │ │ │ ├── jquery.colorhelpers.min.js
│ │ │ │ │ │ ├── jquery.flot.canvas.js
│ │ │ │ │ │ ├── jquery.flot.canvas.min.js
│ │ │ │ │ │ ├── jquery.flot.categories.js
│ │ │ │ │ │ ├── jquery.flot.categories.min.js
│ │ │ │ │ │ ├── jquery.flot.crosshair.js
│ │ │ │ │ │ ├── jquery.flot.crosshair.min.js
│ │ │ │ │ │ ├── jquery.flot.errorbars.js
│ │ │ │ │ │ ├── jquery.flot.errorbars.min.js
│ │ │ │ │ │ ├── jquery.flot.fillbetween.js
│ │ │ │ │ │ ├── jquery.flot.fillbetween.min.js
│ │ │ │ │ │ ├── jquery.flot.image.js
│ │ │ │ │ │ ├── jquery.flot.image.min.js
│ │ │ │ │ │ ├── jquery.flot.js
│ │ │ │ │ │ ├── jquery.flot.min.js
│ │ │ │ │ │ ├── jquery.flot.navigate.js
│ │ │ │ │ │ ├── jquery.flot.navigate.min.js
│ │ │ │ │ │ ├── jquery.flot.pie.js
│ │ │ │ │ │ ├── jquery.flot.pie.min.js
│ │ │ │ │ │ ├── jquery.flot.resize.js
│ │ │ │ │ │ ├── jquery.flot.resize.min.js
│ │ │ │ │ │ ├── jquery.flot.selection.js
│ │ │ │ │ │ ├── jquery.flot.selection.min.js
│ │ │ │ │ │ ├── jquery.flot.stack.js
│ │ │ │ │ │ ├── jquery.flot.stack.min.js
│ │ │ │ │ │ ├── jquery.flot.symbol.js
│ │ │ │ │ │ ├── jquery.flot.symbol.min.js
│ │ │ │ │ │ ├── jquery.flot.threshold.js
│ │ │ │ │ │ ├── jquery.flot.threshold.min.js
│ │ │ │ │ │ ├── jquery.flot.time.js
│ │ │ │ │ │ └── jquery.flot.time.min.js
│ │ │ │ │ ├── fullcalendar
│ │ │ │ │ │ ├── fullcalendar.js
│ │ │ │ │ │ └── fullcalendar.min.js
│ │ │ │ │ ├── iCheck
│ │ │ │ │ │ ├── icheck.js
│ │ │ │ │ │ └── icheck.min.js
│ │ │ │ │ ├── input-mask
│ │ │ │ │ │ ├── jquery.inputmask.date.extensions.js
│ │ │ │ │ │ ├── jquery.inputmask.extensions.js
│ │ │ │ │ │ ├── jquery.inputmask.js
│ │ │ │ │ │ ├── jquery.inputmask.numeric.extensions.js
│ │ │ │ │ │ ├── jquery.inputmask.phone.extensions.js
│ │ │ │ │ │ ├── jquery.inputmask.regex.extensions.js
│ │ │ │ │ │ └── phone-codes
│ │ │ │ │ │ ├── phone-be.json
│ │ │ │ │ │ ├── phone-codes.json
│ │ │ │ │ │ └── readme.txt
│ │ │ │ │ ├── ionslider
│ │ │ │ │ │ └── ion.rangeSlider.min.js
│ │ │ │ │ ├── jqueryKnob
│ │ │ │ │ │ └── jquery.knob.js
│ │ │ │ │ ├── jvectormap
│ │ │ │ │ │ ├── jquery-jvectormap-1.2.2.min.js
│ │ │ │ │ │ └── jquery-jvectormap-world-mill-en.js
│ │ │ │ │ ├── misc
│ │ │ │ │ │ ├── html5shiv.js
│ │ │ │ │ │ ├── jquery.ba-resize.min.js
│ │ │ │ │ │ ├── jquery.placeholder.js
│ │ │ │ │ │ ├── modernizr.min.js
│ │ │ │ │ │ └── respond.min.js
│ │ │ │ │ ├── morris
│ │ │ │ │ │ ├── morris.js
│ │ │ │ │ │ └── morris.min.js
│ │ │ │ │ ├── slimScroll
│ │ │ │ │ │ ├── jquery.slimscroll.js
│ │ │ │ │ │ ├── jquery.slimscroll.min.js
│ │ │ │ │ │ └── slimScroll.jquery.json
│ │ │ │ │ ├── sparkline
│ │ │ │ │ │ ├── jquery.sparkline.js
│ │ │ │ │ │ └── jquery.sparkline.min.js
│ │ │ │ │ └── timepicker
│ │ │ │ │ ├── bootstrap-timepicker.js
│ │ │ │ │ └── bootstrap-timepicker.min.js
│ │ │ │ ├── _references.js
│ │ │ │ ├── respond.js
│ │ │ │ └── respond.min.js
│ │ │ ├── Uploads
│ │ │ │ └── avatar5.png
│ │ │ ├── Views
│ │ │ │ ├── Board
│ │ │ │ │ └── Index.cshtml
│ │ │ │ ├── Home
│ │ │ │ │ └── Index.cshtml
│ │ │ │ ├── Login
│ │ │ │ │ └── Index.cshtml
│ │ │ │ ├── LoginLog
│ │ │ │ │ └── Index.cshtml
│ │ │ │ ├── OpLog
│ │ │ │ │ └── Index.cshtml
│ │ │ │ ├── Permission
│ │ │ │ │ ├── Create.cshtml
│ │ │ │ │ ├── Details.cshtml
│ │ │ │ │ ├── Edit.cshtml
│ │ │ │ │ └── Index.cshtml
│ │ │ │ ├── Role
│ │ │ │ │ ├── Create.cshtml
│ │ │ │ │ ├── Details.cshtml
│ │ │ │ │ ├── Edit.cshtml
│ │ │ │ │ └── Index.cshtml
│ │ │ │ ├── Shared
│ │ │ │ │ ├── Error.cshtml
│ │ │ │ │ ├── _Layout.cshtml
│ │ │ │ │ └── _Layout_for_admin.cshtml
│ │ │ │ ├── User
│ │ │ │ │ ├── Create.cshtml
│ │ │ │ │ ├── Details.cshtml
│ │ │ │ │ ├── Edit.cshtml
│ │ │ │ │ ├── Index.cshtml
│ │ │ │ │ └── UserProfile.cshtml
│ │ │ │ ├── _ViewStart.cshtml
│ │ │ │ └── Web.config
│ │ │ └── Web.config
│ │ ├── ProfileTransformWebConfig
│ │ │ └── transformed
│ │ │ └── Views
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── TempPE
│ │ ├── TransformWebConfig
│ │ │ ├── assist
│ │ │ │ └── Web.config
│ │ │ ├── original
│ │ │ │ └── Web.config
│ │ │ └── transformed
│ │ │ ├── Views
│ │ │ └── Web.config
│ │ ├── web2017.csproj.FileListAbsolute.txt
│ │ ├── web2017.csprojResolveAssemblyReference.cache
│ │ ├── _WPPLastBuildInfo.txt
│ │ ├── YYNET_WEB.dll
│ │ └── YYNET_WEB.pdb
│ ├── packages.config
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── PublishProfiles
│ │ ├── web.pubxml
│ │ └── web.pubxml.user
│ ├── Scripts
│ │ ├── AdminLTE
│ │ │ ├── app.js
│ │ │ └── dashboard.js
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ ├── html5shiv.js
│ │ ├── jquery-1.10.2.intellisense.js
│ │ ├── jquery-1.10.2.js
│ │ ├── jquery-1.10.2.min.js
│ │ ├── jquery-1.10.2.min.map
│ │ ├── jquery-ui-1.10.3.js
│ │ ├── jquery-ui-1.10.3.min.js
│ │ ├── jquery.validate.js
│ │ ├── jquery.validate.min.js
│ │ ├── jquery.validate.unobtrusive.js
│ │ ├── jquery.validate.unobtrusive.min.js
│ │ ├── jquery.validate-vsdoc.js
│ │ ├── modernizr-2.6.2.js
│ │ ├── plugins
│ │ │ ├── bootstrap-slider
│ │ │ │ └── bootstrap-slider.js
│ │ │ ├── bootstrap-wysihtml5
│ │ │ │ ├── bootstrap3-wysihtml5.all.min.js
│ │ │ │ └── bootstrap3-wysihtml5.js
│ │ │ ├── ckeditor
│ │ │ │ ├── adapters
│ │ │ │ │ └── jquery.js
│ │ │ │ ├── build-config.js
│ │ │ │ ├── CHANGES.md
│ │ │ │ ├── ckeditor.js
│ │ │ │ ├── config.js
│ │ │ │ ├── contents.css
│ │ │ │ ├── lang
│ │ │ │ │ ├── af.js
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── bn.js
│ │ │ │ │ ├── bs.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en-au.js
│ │ │ │ │ ├── en-ca.js
│ │ │ │ │ ├── en-gb.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── es.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── eu.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fo.js
│ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── gl.js
│ │ │ │ │ ├── gu.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── hi.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── id.js
│ │ │ │ │ ├── is.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── ka.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── lt.js
│ │ │ │ │ ├── lv.js
│ │ │ │ │ ├── mk.js
│ │ │ │ │ ├── mn.js
│ │ │ │ │ ├── ms.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── ro.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── si.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── sq.js
│ │ │ │ │ ├── sr.js
│ │ │ │ │ ├── sr-latn.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── th.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── ug.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh.js
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── plugins
│ │ │ │ │ ├── a11yhelp
│ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ ├── a11yhelp.js
│ │ │ │ │ │ └── lang
│ │ │ │ │ │ ├── ar.js
│ │ │ │ │ │ ├── bg.js
│ │ │ │ │ │ ├── ca.js
│ │ │ │ │ │ ├── cs.js
│ │ │ │ │ │ ├── cy.js
│ │ │ │ │ │ ├── da.js
│ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ ├── el.js
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ ├── eo.js
│ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ ├── et.js
│ │ │ │ │ │ ├── fa.js
│ │ │ │ │ │ ├── fi.js
│ │ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ ├── gl.js
│ │ │ │ │ │ ├── gu.js
│ │ │ │ │ │ ├── he.js
│ │ │ │ │ │ ├── hi.js
│ │ │ │ │ │ ├── hr.js
│ │ │ │ │ │ ├── hu.js
│ │ │ │ │ │ ├── id.js
│ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ ├── ja.js
│ │ │ │ │ │ ├── km.js
│ │ │ │ │ │ ├── ko.js
│ │ │ │ │ │ ├── ku.js
│ │ │ │ │ │ ├── lt.js
│ │ │ │ │ │ ├── lv.js
│ │ │ │ │ │ ├── mk.js
│ │ │ │ │ │ ├── mn.js
│ │ │ │ │ │ ├── nb.js
│ │ │ │ │ │ ├── nl.js
│ │ │ │ │ │ ├── no.js
│ │ │ │ │ │ ├── pl.js
│ │ │ │ │ │ ├── pt-br.js
│ │ │ │ │ │ ├── pt.js
│ │ │ │ │ │ ├── ro.js
│ │ │ │ │ │ ├── ru.js
│ │ │ │ │ │ ├── si.js
│ │ │ │ │ │ ├── sk.js
│ │ │ │ │ │ ├── sl.js
│ │ │ │ │ │ ├── sq.js
│ │ │ │ │ │ ├── sr.js
│ │ │ │ │ │ ├── sr-latn.js
│ │ │ │ │ │ ├── sv.js
│ │ │ │ │ │ ├── th.js
│ │ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ │ ├── tr.js
│ │ │ │ │ │ ├── ug.js
│ │ │ │ │ │ ├── uk.js
│ │ │ │ │ │ ├── vi.js
│ │ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ │ └── zh.js
│ │ │ │ │ ├── about
│ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ ├── about.js
│ │ │ │ │ │ ├── hidpi
│ │ │ │ │ │ │ └── logo_ckeditor.png
│ │ │ │ │ │ └── logo_ckeditor.png
│ │ │ │ │ ├── clipboard
│ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ └── paste.js
│ │ │ │ │ ├── dialog
│ │ │ │ │ │ └── dialogDefinition.js
│ │ │ │ │ ├── fakeobjects
│ │ │ │ │ │ └── images
│ │ │ │ │ │ └── spacer.gif
│ │ │ │ │ ├── icons_hidpi.png
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── image
│ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ └── image.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ └── noimage.png
│ │ │ │ │ ├── link
│ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ ├── anchor.js
│ │ │ │ │ │ │ └── link.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── anchor.png
│ │ │ │ │ │ └── hidpi
│ │ │ │ │ │ └── anchor.png
│ │ │ │ │ ├── magicline
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── hidpi
│ │ │ │ │ │ │ └── icon.png
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── pastefromword
│ │ │ │ │ │ └── filter
│ │ │ │ │ │ └── default.js
│ │ │ │ │ ├── scayt
│ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ ├── options.js
│ │ │ │ │ │ │ └── toolbar.css
│ │ │ │ │ │ ├── LICENSE.md
│ │ │ │ │ │ └── README.md
│ │ │ │ │ ├── specialchar
│ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ ├── lang
│ │ │ │ │ │ │ ├── ar.js
│ │ │ │ │ │ │ ├── bg.js
│ │ │ │ │ │ │ ├── ca.js
│ │ │ │ │ │ │ ├── cs.js
│ │ │ │ │ │ │ ├── cy.js
│ │ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ │ ├── el.js
│ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ ├── eo.js
│ │ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ │ ├── et.js
│ │ │ │ │ │ │ ├── fa.js
│ │ │ │ │ │ │ ├── fi.js
│ │ │ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ │ ├── gl.js
│ │ │ │ │ │ │ ├── he.js
│ │ │ │ │ │ │ ├── hr.js
│ │ │ │ │ │ │ ├── hu.js
│ │ │ │ │ │ │ ├── id.js
│ │ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ │ ├── ja.js
│ │ │ │ │ │ │ ├── km.js
│ │ │ │ │ │ │ ├── ku.js
│ │ │ │ │ │ │ ├── lv.js
│ │ │ │ │ │ │ ├── nb.js
│ │ │ │ │ │ │ ├── nl.js
│ │ │ │ │ │ │ ├── no.js
│ │ │ │ │ │ │ ├── pl.js
│ │ │ │ │ │ │ ├── pt-br.js
│ │ │ │ │ │ │ ├── pt.js
│ │ │ │ │ │ │ ├── ru.js
│ │ │ │ │ │ │ ├── si.js
│ │ │ │ │ │ │ ├── sk.js
│ │ │ │ │ │ │ ├── sl.js
│ │ │ │ │ │ │ ├── sq.js
│ │ │ │ │ │ │ ├── sv.js
│ │ │ │ │ │ │ ├── th.js
│ │ │ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ │ │ ├── tr.js
│ │ │ │ │ │ │ ├── ug.js
│ │ │ │ │ │ │ ├── uk.js
│ │ │ │ │ │ │ ├── vi.js
│ │ │ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ │ │ └── zh.js
│ │ │ │ │ │ └── specialchar.js
│ │ │ │ │ ├── table
│ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ └── table.js
│ │ │ │ │ ├── tabletools
│ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ └── tableCell.js
│ │ │ │ │ └── wsc
│ │ │ │ │ ├── dialogs
│ │ │ │ │ │ ├── ciframe.html
│ │ │ │ │ │ ├── tmpFrameset.html
│ │ │ │ │ │ ├── tmp.html
│ │ │ │ │ │ ├── wsc.css
│ │ │ │ │ │ ├── wsc_ie.js
│ │ │ │ │ │ └── wsc.js
│ │ │ │ │ ├── LICENSE.md
│ │ │ │ │ └── README.md
│ │ │ │ ├── README.md
│ │ │ │ ├── skins
│ │ │ │ │ └── moono
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ ├── dialog_ie7.css
│ │ │ │ │ ├── dialog_ie8.css
│ │ │ │ │ ├── dialog_ie.css
│ │ │ │ │ ├── dialog_iequirks.css
│ │ │ │ │ ├── dialog_opera.css
│ │ │ │ │ ├── editor.css
│ │ │ │ │ ├── editor_gecko.css
│ │ │ │ │ ├── editor_ie7.css
│ │ │ │ │ ├── editor_ie8.css
│ │ │ │ │ ├── editor_ie.css
│ │ │ │ │ ├── editor_iequirks.css
│ │ │ │ │ ├── icons_hidpi.png
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── arrow.png
│ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ ├── hidpi
│ │ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ │ ├── lock-open.png
│ │ │ │ │ │ │ ├── lock.png
│ │ │ │ │ │ │ └── refresh.png
│ │ │ │ │ │ ├── lock-open.png
│ │ │ │ │ │ ├── lock.png
│ │ │ │ │ │ └── refresh.png
│ │ │ │ │ └── readme.md
│ │ │ │ └── styles.js
│ │ │ ├── colorpicker
│ │ │ │ ├── bootstrap-colorpicker.js
│ │ │ │ └── bootstrap-colorpicker.min.js
│ │ │ ├── datatables
│ │ │ │ ├── dataTables.bootstrap.js
│ │ │ │ └── jquery.dataTables.js
│ │ │ ├── daterangepicker
│ │ │ │ └── daterangepicker.js
│ │ │ ├── flot
│ │ │ │ ├── excanvas.js
│ │ │ │ ├── excanvas.min.js
│ │ │ │ ├── jquery.colorhelpers.js
│ │ │ │ ├── jquery.colorhelpers.min.js
│ │ │ │ ├── jquery.flot.canvas.js
│ │ │ │ ├── jquery.flot.canvas.min.js
│ │ │ │ ├── jquery.flot.categories.js
│ │ │ │ ├── jquery.flot.categories.min.js
│ │ │ │ ├── jquery.flot.crosshair.js
│ │ │ │ ├── jquery.flot.crosshair.min.js
│ │ │ │ ├── jquery.flot.errorbars.js
│ │ │ │ ├── jquery.flot.errorbars.min.js
│ │ │ │ ├── jquery.flot.fillbetween.js
│ │ │ │ ├── jquery.flot.fillbetween.min.js
│ │ │ │ ├── jquery.flot.image.js
│ │ │ │ ├── jquery.flot.image.min.js
│ │ │ │ ├── jquery.flot.js
│ │ │ │ ├── jquery.flot.min.js
│ │ │ │ ├── jquery.flot.navigate.js
│ │ │ │ ├── jquery.flot.navigate.min.js
│ │ │ │ ├── jquery.flot.pie.js
│ │ │ │ ├── jquery.flot.pie.min.js
│ │ │ │ ├── jquery.flot.resize.js
│ │ │ │ ├── jquery.flot.resize.min.js
│ │ │ │ ├── jquery.flot.selection.js
│ │ │ │ ├── jquery.flot.selection.min.js
│ │ │ │ ├── jquery.flot.stack.js
│ │ │ │ ├── jquery.flot.stack.min.js
│ │ │ │ ├── jquery.flot.symbol.js
│ │ │ │ ├── jquery.flot.symbol.min.js
│ │ │ │ ├── jquery.flot.threshold.js
│ │ │ │ ├── jquery.flot.threshold.min.js
│ │ │ │ ├── jquery.flot.time.js
│ │ │ │ └── jquery.flot.time.min.js
│ │ │ ├── fullcalendar
│ │ │ │ ├── fullcalendar.js
│ │ │ │ └── fullcalendar.min.js
│ │ │ ├── iCheck
│ │ │ │ ├── icheck.js
│ │ │ │ └── icheck.min.js
│ │ │ ├── input-mask
│ │ │ │ ├── jquery.inputmask.date.extensions.js
│ │ │ │ ├── jquery.inputmask.extensions.js
│ │ │ │ ├── jquery.inputmask.js
│ │ │ │ ├── jquery.inputmask.numeric.extensions.js
│ │ │ │ ├── jquery.inputmask.phone.extensions.js
│ │ │ │ ├── jquery.inputmask.regex.extensions.js
│ │ │ │ └── phone-codes
│ │ │ │ ├── phone-be.json
│ │ │ │ ├── phone-codes.json
│ │ │ │ └── readme.txt
│ │ │ ├── ionslider
│ │ │ │ └── ion.rangeSlider.min.js
│ │ │ ├── jqueryKnob
│ │ │ │ └── jquery.knob.js
│ │ │ ├── jvectormap
│ │ │ │ ├── jquery-jvectormap-1.2.2.min.js
│ │ │ │ └── jquery-jvectormap-world-mill-en.js
│ │ │ ├── misc
│ │ │ │ ├── html5shiv.js
│ │ │ │ ├── jquery.ba-resize.min.js
│ │ │ │ ├── jquery.placeholder.js
│ │ │ │ ├── modernizr.min.js
│ │ │ │ └── respond.min.js
│ │ │ ├── morris
│ │ │ │ ├── morris.js
│ │ │ │ └── morris.min.js
│ │ │ ├── slimScroll
│ │ │ │ ├── jquery.slimscroll.js
│ │ │ │ ├── jquery.slimscroll.min.js
│ │ │ │ └── slimScroll.jquery.json
│ │ │ ├── sparkline
│ │ │ │ ├── jquery.sparkline.js
│ │ │ │ └── jquery.sparkline.min.js
│ │ │ └── timepicker
│ │ │ ├── bootstrap-timepicker.js
│ │ │ └── bootstrap-timepicker.min.js
│ │ ├── _references.js
│ │ ├── respond.js
│ │ └── respond.min.js
│ ├── Uploads
│ │ └── avatar5.png
│ ├── Views
│ │ ├── Board
│ │ │ └── Index.cshtml
│ │ ├── Home
│ │ │ └── Index.cshtml
│ │ ├── Login
│ │ │ └── Index.cshtml
│ │ ├── LoginLog
│ │ │ └── Index.cshtml
│ │ ├── OpLog
│ │ │ └── Index.cshtml
│ │ ├── Permission
│ │ │ ├── Create.cshtml
│ │ │ ├── Details.cshtml
│ │ │ ├── Edit.cshtml
│ │ │ └── Index.cshtml
│ │ ├── Role
│ │ │ ├── Create.cshtml
│ │ │ ├── Details.cshtml
│ │ │ ├── Edit.cshtml
│ │ │ └── Index.cshtml
│ │ ├── Shared
│ │ │ ├── Error.cshtml
│ │ │ ├── _Layout.cshtml
│ │ │ └── _Layout_for_admin.cshtml
│ │ ├── Uploadify
│ │ ├── User
│ │ │ ├── Create.cshtml
│ │ │ ├── Details.cshtml
│ │ │ ├── Edit.cshtml
│ │ │ ├── Index.cshtml
│ │ │ └── UserProfile.cshtml
│ │ ├── _ViewStart.cshtml
│ │ └── Web.config
│ ├── web2017.csproj
│ ├── web2017.csproj.user
│ ├── Web.config
│ ├── Web.Debug.config
│ └── Web.Release.config
├── web2017.sln
└── 模板
└── AdminLTE-master
├── ajax
│ └── dashboard-boxrefresh-demo.php
├── css
│ ├── AdminLTE.css
│ ├── bootstrap.css
│ ├── bootstrap.min.css
│ ├── bootstrap-slider
│ │ └── slider.css
│ ├── bootstrap-wysihtml5
│ │ ├── bootstrap3-wysihtml5.css
│ │ └── bootstrap3-wysihtml5.min.css
│ ├── colorpicker
│ │ ├── bootstrap-colorpicker.css
│ │ └── bootstrap-colorpicker.min.css
│ ├── datatables
│ │ ├── dataTables.bootstrap.css
│ │ └── images
│ │ ├── sort_asc_disabled.png
│ │ ├── sort_asc.png
│ │ ├── sort_both.png
│ │ ├── sort_desc_disabled.png
│ │ └── sort_desc.png
│ ├── daterangepicker
│ │ └── daterangepicker-bs3.css
│ ├── font-awesome.css
│ ├── font-awesome.min.css
│ ├── fullcalendar
│ │ ├── fullcalendar.css
│ │ └── fullcalendar.print.css
│ ├── iCheck
│ │ ├── all.css
│ │ ├── flat
│ │ │ ├── aero@2x.png
│ │ │ ├── aero.css
│ │ │ ├── aero.png
│ │ │ ├── _all.css
│ │ │ ├── blue@2x.png
│ │ │ ├── blue.css
│ │ │ ├── blue.png
│ │ │ ├── flat@2x.png
│ │ │ ├── flat.css
│ │ │ ├── flat.png
│ │ │ ├── green@2x.png
│ │ │ ├── green.css
│ │ │ ├── green.png
│ │ │ ├── grey@2x.png
│ │ │ ├── grey.css
│ │ │ ├── grey.png
│ │ │ ├── orange@2x.png
│ │ │ ├── orange.css
│ │ │ ├── orange.png
│ │ │ ├── pink@2x.png
│ │ │ ├── pink.css
│ │ │ ├── pink.png
│ │ │ ├── purple@2x.png
│ │ │ ├── purple.css
│ │ │ ├── purple.png
│ │ │ ├── red@2x.png
│ │ │ ├── red.css
│ │ │ ├── red.png
│ │ │ ├── yellow@2x.png
│ │ │ ├── yellow.css
│ │ │ └── yellow.png
│ │ ├── futurico
│ │ │ ├── futurico@2x.png
│ │ │ ├── futurico.css
│ │ │ └── futurico.png
│ │ ├── line
│ │ │ ├── aero.css
│ │ │ ├── _all.css
│ │ │ ├── blue.css
│ │ │ ├── green.css
│ │ │ ├── grey.css
│ │ │ ├── line@2x.png
│ │ │ ├── line.css
│ │ │ ├── line.png
│ │ │ ├── orange.css
│ │ │ ├── pink.css
│ │ │ ├── purple.css
│ │ │ ├── red.css
│ │ │ └── yellow.css
│ │ ├── minimal
│ │ │ ├── aero@2x.png
│ │ │ ├── aero.css
│ │ │ ├── aero.png
│ │ │ ├── _all.css
│ │ │ ├── blue@2x.png
│ │ │ ├── blue.css
│ │ │ ├── blue.png
│ │ │ ├── green@2x.png
│ │ │ ├── green.css
│ │ │ ├── green.png
│ │ │ ├── grey@2x.png
│ │ │ ├── grey.css
│ │ │ ├── grey.png
│ │ │ ├── minimal@2x.png
│ │ │ ├── minimal.css
│ │ │ ├── minimal.png
│ │ │ ├── orange@2x.png
│ │ │ ├── orange.css
│ │ │ ├── orange.png
│ │ │ ├── pink@2x.png
│ │ │ ├── pink.css
│ │ │ ├── pink.png
│ │ │ ├── purple@2x.png
│ │ │ ├── purple.css
│ │ │ ├── purple.png
│ │ │ ├── red@2x.png
│ │ │ ├── red.css
│ │ │ ├── red.png
│ │ │ ├── yellow@2x.png
│ │ │ ├── yellow.css
│ │ │ └── yellow.png
│ │ ├── polaris
│ │ │ ├── polaris@2x.png
│ │ │ ├── polaris.css
│ │ │ └── polaris.png
│ │ └── square
│ │ ├── aero@2x.png
│ │ ├── aero.css
│ │ ├── aero.png
│ │ ├── _all.css
│ │ ├── blue@2x.png
│ │ ├── blue.css
│ │ ├── blue.png
│ │ ├── green@2x.png
│ │ ├── green.css
│ │ ├── green.png
│ │ ├── grey@2x.png
│ │ ├── grey.css
│ │ ├── grey.png
│ │ ├── orange@2x.png
│ │ ├── orange.css
│ │ ├── orange.png
│ │ ├── pink@2x.png
│ │ ├── pink.css
│ │ ├── pink.png
│ │ ├── purple@2x.png
│ │ ├── purple.css
│ │ ├── purple.png
│ │ ├── red@2x.png
│ │ ├── red.css
│ │ ├── red.png
│ │ ├── square@2x.png
│ │ ├── square.css
│ │ ├── square.png
│ │ ├── yellow@2x.png
│ │ ├── yellow.css
│ │ └── yellow.png
│ ├── images
│ │ ├── animated-overlay.gif
│ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ ├── ui-bg_flat_55_fbec88_40x100.png
│ │ ├── ui-bg_glass_75_d0e5f5_1x400.png
│ │ ├── ui-bg_glass_85_dfeffc_1x400.png
│ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png
│ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png
│ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png
│ │ ├── ui-icons_217bc0_256x240.png
│ │ ├── ui-icons_2e83ff_256x240.png
│ │ ├── ui-icons_469bdd_256x240.png
│ │ ├── ui-icons_6da8d5_256x240.png
│ │ ├── ui-icons_cd0a0a_256x240.png
│ │ ├── ui-icons_d8e7f3_256x240.png
│ │ └── ui-icons_f9bd01_256x240.png
│ ├── ionicons.css
│ ├── ionicons.min.css
│ ├── ionslider
│ │ ├── ion.rangeSlider.css
│ │ ├── ion.rangeSlider.skinFlat.css
│ │ └── ion.rangeSlider.skinNice.css
│ ├── jQueryUI
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ ├── ui-bg_flat_100_e6e7e8_40x100.png
│ │ │ ├── ui-bg_flat_100_f56954_40x100.png
│ │ │ ├── ui-bg_flat_55_f39c12_40x100.png
│ │ │ ├── ui-bg_flat_65_ffffff_40x100.png
│ │ │ ├── ui-bg_flat_75_dadada_40x100.png
│ │ │ ├── ui-bg_flat_75_e6e6e6_40x100.png
│ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ ├── ui-icons_222222_256x240.png
│ │ │ ├── ui-icons_454545_256x240.png
│ │ │ ├── ui-icons_888888_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui-1.10.3.custom.css
│ │ └── jquery-ui-1.10.3.custom.min.css
│ ├── jvectormap
│ │ └── jquery-jvectormap-1.2.2.css
│ ├── morris
│ │ └── morris.css
│ └── timepicker
│ ├── bootstrap-timepicker.css
│ └── bootstrap-timepicker.min.css
├── empty.html
├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ ├── fontawesome-webfont.woff
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.svg
│ ├── glyphicons-halflings-regular.ttf
│ ├── glyphicons-halflings-regular.woff
│ ├── ionicons.eot
│ ├── ionicons.svg
│ ├── ionicons.ttf
│ └── ionicons.woff
├── img
│ ├── ajax-loader1.gif
│ ├── ajax-loader.gif
│ ├── avatar04.png
│ ├── avatar2.png
│ ├── avatar3.png
│ ├── avatar5.png
│ ├── avatar.png
│ ├── blur-background04.jpg
│ ├── blur-background08.jpg
│ ├── blur-background09.jpg
│ ├── bootstrap-colorpicker
│ │ ├── alpha-horizontal.png
│ │ ├── alpha.png
│ │ ├── hue-horizontal.png
│ │ ├── hue.png
│ │ └── saturation.png
│ ├── credit
│ │ ├── american-express.png
│ │ ├── cirrus.png
│ │ ├── mastercard.png
│ │ ├── mestro.png
│ │ ├── paypal2.png
│ │ ├── paypal.png
│ │ └── visa.png
│ ├── icons.png
│ ├── sprite-skin-flat.png
│ ├── sprite-skin-nice.png
│ ├── user2.jpg
│ ├── user-bg.png
│ └── user.jpg
├── index.html
├── js
│ ├── AdminLTE
│ │ ├── app.js
│ │ └── dashboard.js
│ ├── bootstrap.js
│ ├── bootstrap.min.js
│ ├── jquery-ui-1.10.3.js
│ ├── jquery-ui-1.10.3.min.js
│ └── plugins
│ ├── bootstrap-slider
│ │ └── bootstrap-slider.js
│ ├── bootstrap-wysihtml5
│ │ ├── bootstrap3-wysihtml5.all.min.js
│ │ └── bootstrap3-wysihtml5.js
│ ├── ckeditor
│ │ ├── adapters
│ │ │ └── jquery.js
│ │ ├── build-config.js
│ │ ├── CHANGES.md
│ │ ├── ckeditor.js
│ │ ├── config.js
│ │ ├── contents.css
│ │ ├── lang
│ │ │ ├── af.js
│ │ │ ├── ar.js
│ │ │ ├── bg.js
│ │ │ ├── bn.js
│ │ │ ├── bs.js
│ │ │ ├── ca.js
│ │ │ ├── cs.js
│ │ │ ├── cy.js
│ │ │ ├── da.js
│ │ │ ├── de.js
│ │ │ ├── el.js
│ │ │ ├── en-au.js
│ │ │ ├── en-ca.js
│ │ │ ├── en-gb.js
│ │ │ ├── en.js
│ │ │ ├── eo.js
│ │ │ ├── es.js
│ │ │ ├── et.js
│ │ │ ├── eu.js
│ │ │ ├── fa.js
│ │ │ ├── fi.js
│ │ │ ├── fo.js
│ │ │ ├── fr-ca.js
│ │ │ ├── fr.js
│ │ │ ├── gl.js
│ │ │ ├── gu.js
│ │ │ ├── he.js
│ │ │ ├── hi.js
│ │ │ ├── hr.js
│ │ │ ├── hu.js
│ │ │ ├── id.js
│ │ │ ├── is.js
│ │ │ ├── it.js
│ │ │ ├── ja.js
│ │ │ ├── ka.js
│ │ │ ├── km.js
│ │ │ ├── ko.js
│ │ │ ├── ku.js
│ │ │ ├── lt.js
│ │ │ ├── lv.js
│ │ │ ├── mk.js
│ │ │ ├── mn.js
│ │ │ ├── ms.js
│ │ │ ├── nb.js
│ │ │ ├── nl.js
│ │ │ ├── no.js
│ │ │ ├── pl.js
│ │ │ ├── pt-br.js
│ │ │ ├── pt.js
│ │ │ ├── ro.js
│ │ │ ├── ru.js
│ │ │ ├── si.js
│ │ │ ├── sk.js
│ │ │ ├── sl.js
│ │ │ ├── sq.js
│ │ │ ├── sr.js
│ │ │ ├── sr-latn.js
│ │ │ ├── sv.js
│ │ │ ├── th.js
│ │ │ ├── tr.js
│ │ │ ├── ug.js
│ │ │ ├── uk.js
│ │ │ ├── vi.js
│ │ │ ├── zh-cn.js
│ │ │ └── zh.js
│ │ ├── LICENSE.md
│ │ ├── plugins
│ │ │ ├── a11yhelp
│ │ │ │ └── dialogs
│ │ │ │ ├── a11yhelp.js
│ │ │ │ └── lang
│ │ │ │ ├── ar.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── ca.js
│ │ │ │ ├── cs.js
│ │ │ │ ├── cy.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de.js
│ │ │ │ ├── el.js
│ │ │ │ ├── en.js
│ │ │ │ ├── eo.js
│ │ │ │ ├── es.js
│ │ │ │ ├── et.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fr-ca.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── gl.js
│ │ │ │ ├── gu.js
│ │ │ │ ├── he.js
│ │ │ │ ├── hi.js
│ │ │ │ ├── hr.js
│ │ │ │ ├── hu.js
│ │ │ │ ├── id.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── km.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── ku.js
│ │ │ │ ├── lt.js
│ │ │ │ ├── lv.js
│ │ │ │ ├── mk.js
│ │ │ │ ├── mn.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── no.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── pt.js
│ │ │ │ ├── ro.js
│ │ │ │ ├── ru.js
│ │ │ │ ├── si.js
│ │ │ │ ├── sk.js
│ │ │ │ ├── sl.js
│ │ │ │ ├── sq.js
│ │ │ │ ├── sr.js
│ │ │ │ ├── sr-latn.js
│ │ │ │ ├── sv.js
│ │ │ │ ├── th.js
│ │ │ │ ├── _translationstatus.txt
│ │ │ │ ├── tr.js
│ │ │ │ ├── ug.js
│ │ │ │ ├── uk.js
│ │ │ │ ├── vi.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ └── zh.js
│ │ │ ├── about
│ │ │ │ └── dialogs
│ │ │ │ ├── about.js
│ │ │ │ ├── hidpi
│ │ │ │ │ └── logo_ckeditor.png
│ │ │ │ └── logo_ckeditor.png
│ │ │ ├── clipboard
│ │ │ │ └── dialogs
│ │ │ │ └── paste.js
│ │ │ ├── dialog
│ │ │ │ └── dialogDefinition.js
│ │ │ ├── fakeobjects
│ │ │ │ └── images
│ │ │ │ └── spacer.gif
│ │ │ ├── icons_hidpi.png
│ │ │ ├── icons.png
│ │ │ ├── image
│ │ │ │ ├── dialogs
│ │ │ │ │ └── image.js
│ │ │ │ └── images
│ │ │ │ └── noimage.png
│ │ │ ├── link
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── anchor.js
│ │ │ │ │ └── link.js
│ │ │ │ └── images
│ │ │ │ ├── anchor.png
│ │ │ │ └── hidpi
│ │ │ │ └── anchor.png
│ │ │ ├── magicline
│ │ │ │ └── images
│ │ │ │ ├── hidpi
│ │ │ │ │ └── icon.png
│ │ │ │ └── icon.png
│ │ │ ├── pastefromword
│ │ │ │ └── filter
│ │ │ │ └── default.js
│ │ │ ├── scayt
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── options.js
│ │ │ │ │ └── toolbar.css
│ │ │ │ ├── LICENSE.md
│ │ │ │ └── README.md
│ │ │ ├── specialchar
│ │ │ │ └── dialogs
│ │ │ │ ├── lang
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── es.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── gl.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── id.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── lv.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── si.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── sq.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── th.js
│ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── ug.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh.js
│ │ │ │ └── specialchar.js
│ │ │ ├── table
│ │ │ │ └── dialogs
│ │ │ │ └── table.js
│ │ │ ├── tabletools
│ │ │ │ └── dialogs
│ │ │ │ └── tableCell.js
│ │ │ └── wsc
│ │ │ ├── dialogs
│ │ │ │ ├── ciframe.html
│ │ │ │ ├── tmpFrameset.html
│ │ │ │ ├── tmp.html
│ │ │ │ ├── wsc.css
│ │ │ │ ├── wsc_ie.js
│ │ │ │ └── wsc.js
│ │ │ ├── LICENSE.md
│ │ │ └── README.md
│ │ ├── README.md
│ │ ├── skins
│ │ │ └── moono
│ │ │ ├── dialog.css
│ │ │ ├── dialog_ie7.css
│ │ │ ├── dialog_ie8.css
│ │ │ ├── dialog_ie.css
│ │ │ ├── dialog_iequirks.css
│ │ │ ├── dialog_opera.css
│ │ │ ├── editor.css
│ │ │ ├── editor_gecko.css
│ │ │ ├── editor_ie7.css
│ │ │ ├── editor_ie8.css
│ │ │ ├── editor_ie.css
│ │ │ ├── editor_iequirks.css
│ │ │ ├── icons_hidpi.png
│ │ │ ├── icons.png
│ │ │ ├── images
│ │ │ │ ├── arrow.png
│ │ │ │ ├── close.png
│ │ │ │ ├── hidpi
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── lock-open.png
│ │ │ │ │ ├── lock.png
│ │ │ │ │ └── refresh.png
│ │ │ │ ├── lock-open.png
│ │ │ │ ├── lock.png
│ │ │ │ └── refresh.png
│ │ │ └── readme.md
│ │ └── styles.js
│ ├── colorpicker
│ │ ├── bootstrap-colorpicker.js
│ │ └── bootstrap-colorpicker.min.js
│ ├── datatables
│ │ ├── dataTables.bootstrap.js
│ │ └── jquery.dataTables.js
│ ├── daterangepicker
│ │ └── daterangepicker.js
│ ├── flot
│ │ ├── excanvas.js
│ │ ├── excanvas.min.js
│ │ ├── jquery.colorhelpers.js
│ │ ├── jquery.colorhelpers.min.js
│ │ ├── jquery.flot.canvas.js
│ │ ├── jquery.flot.canvas.min.js
│ │ ├── jquery.flot.categories.js
│ │ ├── jquery.flot.categories.min.js
│ │ ├── jquery.flot.crosshair.js
│ │ ├── jquery.flot.crosshair.min.js
│ │ ├── jquery.flot.errorbars.js
│ │ ├── jquery.flot.errorbars.min.js
│ │ ├── jquery.flot.fillbetween.js
│ │ ├── jquery.flot.fillbetween.min.js
│ │ ├── jquery.flot.image.js
│ │ ├── jquery.flot.image.min.js
│ │ ├── jquery.flot.js
│ │ ├── jquery.flot.min.js
│ │ ├── jquery.flot.navigate.js
│ │ ├── jquery.flot.navigate.min.js
│ │ ├── jquery.flot.pie.js
│ │ ├── jquery.flot.pie.min.js
│ │ ├── jquery.flot.resize.js
│ │ ├── jquery.flot.resize.min.js
│ │ ├── jquery.flot.selection.js
│ │ ├── jquery.flot.selection.min.js
│ │ ├── jquery.flot.stack.js
│ │ ├── jquery.flot.stack.min.js
│ │ ├── jquery.flot.symbol.js
│ │ ├── jquery.flot.symbol.min.js
│ │ ├── jquery.flot.threshold.js
│ │ ├── jquery.flot.threshold.min.js
│ │ ├── jquery.flot.time.js
│ │ └── jquery.flot.time.min.js
│ ├── fullcalendar
│ │ ├── fullcalendar.js
│ │ └── fullcalendar.min.js
│ ├── iCheck
│ │ ├── icheck.js
│ │ └── icheck.min.js
│ ├── input-mask
│ │ ├── jquery.inputmask.date.extensions.js
│ │ ├── jquery.inputmask.extensions.js
│ │ ├── jquery.inputmask.js
│ │ ├── jquery.inputmask.numeric.extensions.js
│ │ ├── jquery.inputmask.phone.extensions.js
│ │ ├── jquery.inputmask.regex.extensions.js
│ │ └── phone-codes
│ │ ├── phone-be.json
│ │ ├── phone-codes.json
│ │ └── readme.txt
│ ├── ionslider
│ │ └── ion.rangeSlider.min.js
│ ├── jqueryKnob
│ │ └── jquery.knob.js
│ ├── jvectormap
│ │ ├── jquery-jvectormap-1.2.2.min.js
│ │ └── jquery-jvectormap-world-mill-en.js
│ ├── misc
│ │ ├── html5shiv.js
│ │ ├── jquery.ba-resize.min.js
│ │ ├── jquery.placeholder.js
│ │ ├── modernizr.min.js
│ │ └── respond.min.js
│ ├── morris
│ │ ├── morris.js
│ │ └── morris.min.js
│ ├── slimScroll
│ │ ├── jquery.slimscroll.js
│ │ ├── jquery.slimscroll.min.js
│ │ └── slimScroll.jquery.json
│ ├── sparkline
│ │ ├── jquery.sparkline.js
│ │ └── jquery.sparkline.min.js
│ └── timepicker
│ ├── bootstrap-timepicker.js
│ └── bootstrap-timepicker.min.js
├── less
│ ├── 404_500_errors.less
│ ├── AdminLTE.less
│ ├── alerts.less
│ ├── bootstrap-social.less
│ ├── boxes.less
│ ├── buttons.less
│ ├── callout.less
│ ├── core.less
│ ├── dropdown.less
│ ├── forms.less
│ ├── header.less
│ ├── iCheck.less
│ ├── invoice.less
│ ├── lockscreen.less
│ ├── login_and_register.less
│ ├── mailbox.less
│ ├── mixins.less
│ ├── navs.less
│ ├── pace.less
│ ├── progress-bars.less
│ ├── sidebar.less
│ ├── skins.less
│ ├── small-box.less
│ ├── timeline.less
│ └── vars.less
├── LICENSE
├── pages
│ ├── calendar.html
│ ├── charts
│ │ ├── empty.html
│ │ ├── flot.html
│ │ ├── inline.html
│ │ └── morris.html
│ ├── empty.html
│ ├── examples
│ │ ├── 404.html
│ │ ├── 500.html
│ │ ├── blank.html
│ │ ├── invoice.html
│ │ ├── lockscreen.html
│ │ ├── login.html
│ │ └── register.html
│ ├── forms
│ │ ├── advanced.html
│ │ ├── editors.html
│ │ ├── empty.html
│ │ └── general.html
│ ├── mailbox.html
│ ├── tables
│ │ ├── data.html
│ │ ├── empty.html
│ │ └── simple.html
│ ├── UI
│ │ ├── buttons.html
│ │ ├── empty.html
│ │ ├── general.html
│ │ ├── icons.html
│ │ ├── jquery-ui.html
│ │ ├── sliders.html
│ │ └── timeline.html
│ └── widgets.html
├── README.md
└── 说明.htm
566 directories, 2408 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论