├── .gitattributes ├── .gitignore ├── .vs ├── NBCZ │ ├── DesignTimeBuild │ │ └── .dtbcache │ ├── config │ │ └── applicationhost.config │ ├── v15 │ │ ├── .suo │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ └── v16 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide └── config │ └── applicationhost.config ├── 1529981048.jpg ├── LICENSE ├── NBCZ.BLL ├── NBCZ.BLL.csproj ├── Properties │ └── AssemblyInfo.cs ├── Pub_DepartmentBLL.cs ├── Pub_FunctionBLL.cs ├── Pub_RoleBLL.cs ├── Pub_UserBLL.cs ├── Pub_UserFunctionBLL.cs ├── Pub_UserRoleBLL.cs ├── T4.DapperExt │ ├── BaseService.cs │ ├── Business.tt │ ├── Business.txt │ ├── Pub_DepartmentBLL.cs │ ├── Pub_FunctionBLL.cs │ ├── Pub_RoleBLL.cs │ ├── Pub_RoleFunctionBLL.cs │ ├── Pub_UserBLL.cs │ ├── Pub_UserFunctionBLL.cs │ ├── Pub_UserRoleBLL.cs │ └── V_PubUser_DeptBLL.cs ├── V_PubUser_DeptBLL.cs ├── bin │ ├── Debug │ │ ├── AutoMapper.dll │ │ ├── AutoMapper.xml │ │ ├── Dapper.dll │ │ ├── Dapper.xml │ │ ├── DapperExtensions.dll │ │ ├── DapperExtensions.pdb │ │ ├── NBCZ.BLL.dll │ │ ├── NBCZ.BLL.pdb │ │ ├── NBCZ.Common.dll │ │ ├── NBCZ.Common.pdb │ │ ├── NBCZ.DAL.dll │ │ ├── NBCZ.DAL.pdb │ │ ├── NBCZ.DBUtility.dll │ │ ├── NBCZ.DBUtility.pdb │ │ ├── NBCZ.Model.dll │ │ ├── NBCZ.Model.pdb │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── TinyMapper.dll │ │ ├── log4net.dll │ │ └── log4net.xml │ └── Release │ │ ├── AutoMapper.dll │ │ ├── AutoMapper.xml │ │ ├── Dapper.dll │ │ ├── Dapper.xml │ │ ├── DapperExtensions.dll │ │ ├── DapperExtensions.pdb │ │ ├── NBCZ.BLL.dll │ │ ├── NBCZ.BLL.pdb │ │ ├── NBCZ.Common.dll │ │ ├── NBCZ.Common.pdb │ │ ├── NBCZ.DAL.dll │ │ ├── NBCZ.DAL.pdb │ │ ├── NBCZ.DBUtility.dll │ │ ├── NBCZ.DBUtility.pdb │ │ ├── NBCZ.Model.dll │ │ ├── NBCZ.Model.pdb │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── TinyMapper.dll │ │ ├── log4net.dll │ │ └── log4net.xml ├── obj │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── NBCZ.BLL.csproj.CopyComplete │ │ ├── NBCZ.BLL.csproj.FileListAbsolute.txt │ │ ├── NBCZ.BLL.csprojAssemblyReference.cache │ │ ├── NBCZ.BLL.dll │ │ ├── NBCZ.BLL.pdb │ │ ├── TempPE │ │ │ └── T4.DapperExt.Business.txt.dll │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── Release │ │ ├── NBCZ.BLL.csproj.CopyComplete │ │ ├── NBCZ.BLL.csproj.CoreCompileInputs.cache │ │ ├── NBCZ.BLL.csproj.FileListAbsolute.txt │ │ ├── NBCZ.BLL.csprojAssemblyReference.cache │ │ ├── NBCZ.BLL.dll │ │ ├── NBCZ.BLL.pdb │ │ ├── TempPE │ │ └── T4.DapperExt.Business.txt.dll │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── NBCZ.Common ├── AutoMapperHelper.cs ├── ConfigHelper.cs ├── DBHelper.cs ├── DataCache.cs ├── Desc.cs ├── LogHelper.cs ├── NBCZ.Common.csproj ├── Properties │ └── AssemblyInfo.cs ├── TinyMapperHelper.cs ├── ValidateCode.cs ├── bin │ ├── Debug │ │ ├── AutoMapper.dll │ │ ├── AutoMapper.xml │ │ ├── NBCZ.Common.dll │ │ ├── NBCZ.Common.pdb │ │ ├── TinyMapper.dll │ │ ├── log4net.dll │ │ └── log4net.xml │ └── Release │ │ ├── AutoMapper.dll │ │ ├── AutoMapper.xml │ │ ├── NBCZ.Common.dll │ │ ├── NBCZ.Common.pdb │ │ ├── TinyMapper.dll │ │ ├── log4net.dll │ │ └── log4net.xml ├── obj │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── NBCZ.Common.csproj.CopyComplete │ │ ├── NBCZ.Common.csproj.FileListAbsolute.txt │ │ ├── NBCZ.Common.csprojAssemblyReference.cache │ │ ├── NBCZ.Common.dll │ │ ├── NBCZ.Common.pdb │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── Release │ │ ├── NBCZ.Common.csproj.CopyComplete │ │ ├── NBCZ.Common.csproj.CoreCompileInputs.cache │ │ ├── NBCZ.Common.csproj.FileListAbsolute.txt │ │ ├── NBCZ.Common.csprojAssemblyReference.cache │ │ ├── NBCZ.Common.dll │ │ ├── NBCZ.Common.pdb │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── NBCZ.DAL ├── NBCZ.DAL.csproj ├── Properties │ └── AssemblyInfo.cs ├── Pub_DepartmentDAL.cs ├── Pub_FunctionDAL.cs ├── Pub_RoleDAL.cs ├── Pub_UserDAL.cs ├── Pub_UserFunctionDAL.cs ├── Pub_UserRoleDAL.cs ├── T4.DapperExt │ ├── BaseData.cs │ ├── DataAccess.tt │ ├── DataAccess.txt │ ├── Pub_DepartmentDAL.cs │ ├── Pub_FunctionDAL.cs │ ├── Pub_RoleDAL.cs │ ├── Pub_RoleFunctionDAL.cs │ ├── Pub_UserDAL.cs │ ├── Pub_UserFunctionDAL.cs │ ├── Pub_UserRoleDAL.cs │ └── V_PubUser_DeptDAL.cs ├── bin │ ├── Debug │ │ ├── AutoMapper.dll │ │ ├── AutoMapper.xml │ │ ├── Dapper.dll │ │ ├── Dapper.xml │ │ ├── DapperExtensions.dll │ │ ├── DapperExtensions.pdb │ │ ├── NBCZ.Common.dll │ │ ├── NBCZ.Common.pdb │ │ ├── NBCZ.DAL.dll │ │ ├── NBCZ.DAL.pdb │ │ ├── NBCZ.DBUtility.dll │ │ ├── NBCZ.DBUtility.pdb │ │ ├── NBCZ.Model.dll │ │ ├── NBCZ.Model.pdb │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── TinyMapper.dll │ │ ├── log4net.dll │ │ └── log4net.xml │ └── Release │ │ ├── AutoMapper.dll │ │ ├── AutoMapper.xml │ │ ├── Dapper.dll │ │ ├── Dapper.xml │ │ ├── DapperExtensions.dll │ │ ├── DapperExtensions.pdb │ │ ├── NBCZ.Common.dll │ │ ├── NBCZ.Common.pdb │ │ ├── NBCZ.DAL.dll │ │ ├── NBCZ.DAL.pdb │ │ ├── NBCZ.DBUtility.dll │ │ ├── NBCZ.DBUtility.pdb │ │ ├── NBCZ.Model.dll │ │ ├── NBCZ.Model.pdb │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── TinyMapper.dll │ │ ├── log4net.dll │ │ └── log4net.xml ├── obj │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── NBCZ.DAL.csproj.CopyComplete │ │ ├── NBCZ.DAL.csproj.FileListAbsolute.txt │ │ ├── NBCZ.DAL.csprojAssemblyReference.cache │ │ ├── NBCZ.DAL.dll │ │ ├── NBCZ.DAL.pdb │ │ ├── TempPE │ │ │ └── T4.DapperExt.DataAccess.txt.dll │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── Release │ │ ├── NBCZ.DAL.csproj.CopyComplete │ │ ├── NBCZ.DAL.csproj.CoreCompileInputs.cache │ │ ├── NBCZ.DAL.csproj.FileListAbsolute.txt │ │ ├── NBCZ.DAL.csprojAssemblyReference.cache │ │ ├── NBCZ.DAL.dll │ │ ├── NBCZ.DAL.pdb │ │ ├── TempPE │ │ └── T4.DapperExt.DataAccess.txt.dll │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── NBCZ.DBUtility ├── CommandInfo.cs ├── DESEncrypt.cs ├── DbHelper │ ├── DapperHelper.cs │ ├── Db.CS │ │ ├── DbEntity.cs │ │ └── MsSqlDbHelper.cs │ ├── DbEntity.ttinclude │ ├── MsSqlDbHelper.ttinclude │ └── OutputHelper.ttinclude ├── DbHelperSQL.cs ├── NBCZ.DBUtility.csproj ├── OracleHelper.cs ├── Properties │ └── AssemblyInfo.cs ├── bin │ ├── Debug │ │ ├── Dapper.dll │ │ ├── Dapper.xml │ │ ├── DapperExtensions.dll │ │ ├── DapperExtensions.pdb │ │ ├── NBCZ.DBUtility.dll │ │ └── NBCZ.DBUtility.pdb │ └── Release │ │ ├── Dapper.dll │ │ ├── Dapper.xml │ │ ├── DapperExtensions.dll │ │ ├── DapperExtensions.pdb │ │ ├── NBCZ.DBUtility.dll │ │ └── NBCZ.DBUtility.pdb ├── obj │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── NBCZ.DBUtility.csproj.CopyComplete │ │ ├── NBCZ.DBUtility.csproj.FileListAbsolute.txt │ │ ├── NBCZ.DBUtility.dll │ │ ├── NBCZ.DBUtility.pdb │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── Release │ │ ├── NBCZ.DBUtility.csproj.CopyComplete │ │ ├── NBCZ.DBUtility.csproj.CoreCompileInputs.cache │ │ ├── NBCZ.DBUtility.csproj.FileListAbsolute.txt │ │ ├── NBCZ.DBUtility.csprojAssemblyReference.cache │ │ ├── NBCZ.DBUtility.dll │ │ ├── NBCZ.DBUtility.pdb │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── NBCZ.Model ├── NBCZ.Model.csproj ├── NBCZ.Model.csproj.user ├── PageDateRep.cs ├── PageList.cs ├── Properties │ └── AssemblyInfo.cs ├── Pub_UserRole.cs ├── T4.DapperExt │ ├── BaseEntity.cs │ ├── Entity.cs │ ├── Entity.tt │ ├── Entity.txt │ ├── Pub_Department.cs │ ├── Pub_Function.cs │ ├── Pub_Role.cs │ ├── Pub_RoleFunction.cs │ ├── Pub_User.cs │ ├── Pub_UserFunction.cs │ ├── Pub_UserRole.cs │ └── V_PubUser_Dept.cs ├── V_PubUser_Dept.cs ├── bin │ ├── Debug │ │ ├── Dapper.dll │ │ ├── Dapper.xml │ │ ├── DapperExtensions.dll │ │ ├── DapperExtensions.pdb │ │ ├── NBCZ.Model.dll │ │ ├── NBCZ.Model.pdb │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ └── TinyMapper.dll │ └── Release │ │ ├── Dapper.dll │ │ ├── Dapper.xml │ │ ├── DapperExtensions.dll │ │ ├── DapperExtensions.pdb │ │ ├── NBCZ.Model.dll │ │ ├── NBCZ.Model.pdb │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ └── TinyMapper.dll ├── frMenuJson.cs ├── obj │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── NBCZ.Model.csproj.CopyComplete │ │ ├── NBCZ.Model.csproj.FileListAbsolute.txt │ │ ├── NBCZ.Model.csprojAssemblyReference.cache │ │ ├── NBCZ.Model.dll │ │ ├── NBCZ.Model.pdb │ │ ├── TempPE │ │ │ └── T4.DapperExt.Entity.txt.dll │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── Release │ │ ├── NBCZ.Model.csproj.CopyComplete │ │ ├── NBCZ.Model.csproj.CoreCompileInputs.cache │ │ ├── NBCZ.Model.csproj.FileListAbsolute.txt │ │ ├── NBCZ.Model.csprojAssemblyReference.cache │ │ ├── NBCZ.Model.dll │ │ ├── NBCZ.Model.pdb │ │ ├── TempPE │ │ └── T4.DapperExt.Entity.txt.dll │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── NBCZ.Web ├── .dockerignore ├── App_Start │ ├── Authorization.cs │ ├── AutoMapperConfig.cs │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── MyViewEngine.cs │ ├── RouteConfig.cs │ ├── TinyMapperConfig.cs │ └── WebException.cs ├── Areas │ └── Admin │ │ ├── AdminAreaRegistration.cs │ │ ├── Controllers │ │ ├── BaseAdminController.cs │ │ ├── DepartmentController.cs │ │ ├── FunctionController.cs │ │ ├── HomeController.cs │ │ ├── LoginController.cs │ │ ├── RoleController.cs │ │ └── UserController.cs │ │ └── Views │ │ ├── Department │ │ ├── Add.cshtml │ │ ├── DeptTreeSelect.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ │ ├── Function │ │ ├── Add.cshtml │ │ ├── Edit.cshtml │ │ ├── FunctionTreeSelect.cshtml │ │ └── Index.cshtml │ │ ├── Home │ │ └── Index.cshtml │ │ ├── Login │ │ └── Index.cshtml │ │ ├── Role │ │ ├── Add.cshtml │ │ ├── Edit.cshtml │ │ ├── Index.cshtml │ │ └── roleFunctionEdit.cshtml │ │ ├── User │ │ ├── Add.cshtml │ │ ├── Edit.cshtml │ │ ├── EditPassWord.cshtml │ │ ├── Index.cshtml │ │ └── UserFunctionEdit.cshtml │ │ └── web.config ├── Content │ ├── Site.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── font-awesome.min.css │ └── login.css ├── Controllers │ ├── CaptchaController.cs │ ├── EasyuiTestController.cs │ └── HomeController.cs ├── Dockerfile ├── Global.asax ├── Global.asax.cs ├── Helper │ └── AdminUrlHelper.cs ├── Models │ ├── AuthConst │ │ ├── DepartmentAuth.cs │ │ ├── FunctionAuth.cs │ │ ├── RoleAuth.cs │ │ └── UserInfoAuth.cs │ ├── FSMapper.cs │ ├── FSRep.cs │ ├── FStree.cs │ └── LoginViewModel.cs ├── NBCZ.Web.csproj ├── NBCZ.Web.csproj.user ├── NBCZUser.cs ├── NoAuth.html ├── Project_Readme.html ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ ├── NBCZ.pubxml │ │ └── NBCZ.pubxml.user ├── Scripts │ ├── Auth.js │ ├── FormExt.js │ ├── _references.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── datapattern.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.unobtrusive-ajax.js │ ├── jquery.unobtrusive-ajax.min.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js ├── Views │ ├── EasyuiTest │ │ ├── Demo.cshtml │ │ └── Index.cshtml │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── easyui-super-theme │ ├── FormExt.js │ ├── README.md │ ├── css │ │ ├── reset.css │ │ ├── superBlue.css │ │ ├── superBlueDark.css │ │ ├── superGreen.css │ │ └── superYellow.css │ ├── demo.html │ ├── easyui-extensions │ │ └── jeasyui.extensions.ty.js │ ├── easyui │ │ ├── changelog.txt │ │ ├── demo-mobile │ │ │ ├── accordion │ │ │ │ ├── _content.html │ │ │ │ ├── basic.html │ │ │ │ └── header.html │ │ │ ├── animation │ │ │ │ ├── basic.html │ │ │ │ ├── fade.html │ │ │ │ ├── pop.html │ │ │ │ └── slide.html │ │ │ ├── badge │ │ │ │ ├── basic.html │ │ │ │ ├── button.html │ │ │ │ ├── list.html │ │ │ │ └── tabs.html │ │ │ ├── button │ │ │ │ ├── basic.html │ │ │ │ ├── group.html │ │ │ │ ├── style.html │ │ │ │ └── switch.html │ │ │ ├── datagrid │ │ │ │ ├── basic.html │ │ │ │ └── rowediting.html │ │ │ ├── datalist │ │ │ │ ├── basic.html │ │ │ │ ├── group.html │ │ │ │ └── selection.html │ │ │ ├── dialog │ │ │ │ ├── basic.html │ │ │ │ └── message.html │ │ │ ├── form │ │ │ │ └── basic.html │ │ │ ├── images │ │ │ │ ├── login1.jpg │ │ │ │ ├── modem.png │ │ │ │ ├── more.png │ │ │ │ ├── pda.png │ │ │ │ ├── scanner.png │ │ │ │ └── tablet.png │ │ │ ├── input │ │ │ │ ├── numberspinner.html │ │ │ │ └── textbox.html │ │ │ ├── layout │ │ │ │ └── basic.html │ │ │ ├── menu │ │ │ │ ├── basic.html │ │ │ │ └── menubar.html │ │ │ ├── panel │ │ │ │ ├── _content.html │ │ │ │ ├── ajax.html │ │ │ │ ├── basic.html │ │ │ │ └── nav.html │ │ │ ├── simplelist │ │ │ │ ├── basic.html │ │ │ │ ├── button.html │ │ │ │ ├── group.html │ │ │ │ ├── image.html │ │ │ │ └── link.html │ │ │ ├── tabs │ │ │ │ ├── basic.html │ │ │ │ ├── nav.html │ │ │ │ └── pill.html │ │ │ ├── toolbar │ │ │ │ ├── basic.html │ │ │ │ ├── button.html │ │ │ │ └── menu.html │ │ │ └── tree │ │ │ │ ├── basic.html │ │ │ │ └── dnd.html │ │ ├── demo │ │ │ ├── accordion │ │ │ │ ├── _content.html │ │ │ │ ├── actions.html │ │ │ │ ├── ajax.html │ │ │ │ ├── basic.html │ │ │ │ ├── datagrid_data1.json │ │ │ │ ├── expandable.html │ │ │ │ ├── fluid.html │ │ │ │ ├── horizontal.html │ │ │ │ ├── multiple.html │ │ │ │ └── tools.html │ │ │ ├── calendar │ │ │ │ ├── basic.html │ │ │ │ ├── custom.html │ │ │ │ ├── disabledate.html │ │ │ │ ├── firstday.html │ │ │ │ ├── fluid.html │ │ │ │ └── weeknumber.html │ │ │ ├── checkbox │ │ │ │ └── basic.html │ │ │ ├── combo │ │ │ │ ├── animation.html │ │ │ │ └── basic.html │ │ │ ├── combobox │ │ │ │ ├── actions.html │ │ │ │ ├── basic.html │ │ │ │ ├── combobox_data1.json │ │ │ │ ├── combobox_data2.json │ │ │ │ ├── customformat.html │ │ │ │ ├── dynamicdata.html │ │ │ │ ├── fluid.html │ │ │ │ ├── group.html │ │ │ │ ├── icons.html │ │ │ │ ├── itemicon.html │ │ │ │ ├── multiline.html │ │ │ │ ├── multiple.html │ │ │ │ ├── navigation.html │ │ │ │ ├── remotedata.html │ │ │ │ └── remotejsonp.html │ │ │ ├── combogrid │ │ │ │ ├── actions.html │ │ │ │ ├── basic.html │ │ │ │ ├── datagrid_data1.json │ │ │ │ ├── fluid.html │ │ │ │ ├── initvalue.html │ │ │ │ ├── multiple.html │ │ │ │ ├── navigation.html │ │ │ │ └── setvalue.html │ │ │ ├── combotree │ │ │ │ ├── actions.html │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ ├── initvalue.html │ │ │ │ ├── multiple.html │ │ │ │ └── tree_data1.json │ │ │ ├── combotreegrid │ │ │ │ ├── basic.html │ │ │ │ ├── multiple.html │ │ │ │ └── treegrid_data1.json │ │ │ ├── datagrid │ │ │ │ ├── aligncolumns.html │ │ │ │ ├── basic.html │ │ │ │ ├── cacheeditor.html │ │ │ │ ├── cellediting.html │ │ │ │ ├── cellstyle.html │ │ │ │ ├── checkbox.html │ │ │ │ ├── clientpagination.html │ │ │ │ ├── columngroup.html │ │ │ │ ├── complextoolbar.html │ │ │ │ ├── contextmenu.html │ │ │ │ ├── custompager.html │ │ │ │ ├── datagrid_data1.json │ │ │ │ ├── datagrid_data2.json │ │ │ │ ├── fluid.html │ │ │ │ ├── footer.html │ │ │ │ ├── formatcolumns.html │ │ │ │ ├── frozencolumns.html │ │ │ │ ├── frozenrows.html │ │ │ │ ├── mergecells.html │ │ │ │ ├── multisorting.html │ │ │ │ ├── products.json │ │ │ │ ├── rowborder.html │ │ │ │ ├── rowediting.html │ │ │ │ ├── rowstyle.html │ │ │ │ ├── selection.html │ │ │ │ ├── simpletoolbar.html │ │ │ │ └── transform.html │ │ │ ├── datalist │ │ │ │ ├── basic.html │ │ │ │ ├── checkbox.html │ │ │ │ ├── datalist_data1.json │ │ │ │ ├── group.html │ │ │ │ ├── multiselect.html │ │ │ │ └── remotedata.html │ │ │ ├── datebox │ │ │ │ ├── basic.html │ │ │ │ ├── buttons.html │ │ │ │ ├── clone.html │ │ │ │ ├── dateformat.html │ │ │ │ ├── events.html │ │ │ │ ├── fluid.html │ │ │ │ ├── restrict.html │ │ │ │ ├── sharedcalendar.html │ │ │ │ └── validate.html │ │ │ ├── datetimebox │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ ├── initvalue.html │ │ │ │ └── showseconds.html │ │ │ ├── datetimespinner │ │ │ │ ├── basic.html │ │ │ │ ├── clearicon.html │ │ │ │ ├── fluid.html │ │ │ │ └── format.html │ │ │ ├── demo.css │ │ │ ├── dialog │ │ │ │ ├── basic.html │ │ │ │ ├── complextoolbar.html │ │ │ │ ├── fluid.html │ │ │ │ └── toolbarbuttons.html │ │ │ ├── draggable │ │ │ │ ├── basic.html │ │ │ │ ├── constrain.html │ │ │ │ └── snap.html │ │ │ ├── droppable │ │ │ │ ├── accept.html │ │ │ │ ├── basic.html │ │ │ │ └── sort.html │ │ │ ├── easyloader │ │ │ │ └── basic.html │ │ │ ├── filebox │ │ │ │ ├── basic.html │ │ │ │ ├── buttonalign.html │ │ │ │ └── fluid.html │ │ │ ├── form │ │ │ │ ├── basic.html │ │ │ │ ├── form_data1.json │ │ │ │ ├── load.html │ │ │ │ └── validateonsubmit.html │ │ │ ├── layout │ │ │ │ ├── _content.html │ │ │ │ ├── addremove.html │ │ │ │ ├── autoheight.html │ │ │ │ ├── basic.html │ │ │ │ ├── collapsetitle.html │ │ │ │ ├── complex.html │ │ │ │ ├── customcollapsetitle.html │ │ │ │ ├── datagrid_data1.json │ │ │ │ ├── fluid.html │ │ │ │ ├── full.html │ │ │ │ ├── nestedlayout.html │ │ │ │ ├── nocollapsible.html │ │ │ │ ├── propertygrid_data1.json │ │ │ │ └── tree_data1.json │ │ │ ├── linkbutton │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ ├── group.html │ │ │ │ ├── iconalign.html │ │ │ │ ├── plain.html │ │ │ │ ├── size.html │ │ │ │ ├── style.html │ │ │ │ └── toggle.html │ │ │ ├── maskedbox │ │ │ │ └── basic.html │ │ │ ├── menu │ │ │ │ ├── basic.html │ │ │ │ ├── customitem.html │ │ │ │ ├── events.html │ │ │ │ ├── inline.html │ │ │ │ └── nav.html │ │ │ ├── menubutton │ │ │ │ ├── actions.html │ │ │ │ ├── alignment.html │ │ │ │ ├── basic.html │ │ │ │ └── nav.html │ │ │ ├── messager │ │ │ │ ├── alert.html │ │ │ │ ├── basic.html │ │ │ │ ├── interactive.html │ │ │ │ └── position.html │ │ │ ├── numberbox │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ ├── format.html │ │ │ │ └── range.html │ │ │ ├── numberspinner │ │ │ │ ├── align.html │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ ├── increment.html │ │ │ │ └── range.html │ │ │ ├── pagination │ │ │ │ ├── attaching.html │ │ │ │ ├── basic.html │ │ │ │ ├── custombuttons.html │ │ │ │ ├── layout.html │ │ │ │ ├── links.html │ │ │ │ └── simple.html │ │ │ ├── panel │ │ │ │ ├── _content.html │ │ │ │ ├── basic.html │ │ │ │ ├── customtools.html │ │ │ │ ├── fluid.html │ │ │ │ ├── footer.html │ │ │ │ ├── halign.html │ │ │ │ ├── loadcontent.html │ │ │ │ ├── nestedpanel.html │ │ │ │ └── paneltools.html │ │ │ ├── passwordbox │ │ │ │ ├── basic.html │ │ │ │ ├── flash.html │ │ │ │ └── validatepassword.html │ │ │ ├── progressbar │ │ │ │ ├── basic.html │ │ │ │ └── fluid.html │ │ │ ├── propertygrid │ │ │ │ ├── basic.html │ │ │ │ ├── customcolumns.html │ │ │ │ ├── groupformat.html │ │ │ │ └── propertygrid_data1.json │ │ │ ├── radiobutton │ │ │ │ └── basic.html │ │ │ ├── resizable │ │ │ │ └── basic.html │ │ │ ├── searchbox │ │ │ │ ├── basic.html │ │ │ │ ├── category.html │ │ │ │ └── fluid.html │ │ │ ├── sidemenu │ │ │ │ ├── basic.html │ │ │ │ ├── sidemenu_style.css │ │ │ │ └── style.html │ │ │ ├── slider │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ ├── formattip.html │ │ │ │ ├── nonlinear.html │ │ │ │ ├── range.html │ │ │ │ ├── rule.html │ │ │ │ └── vertical.html │ │ │ ├── splitbutton │ │ │ │ ├── actions.html │ │ │ │ └── basic.html │ │ │ ├── switchbutton │ │ │ │ ├── action.html │ │ │ │ └── basic.html │ │ │ ├── tabs │ │ │ │ ├── _content.html │ │ │ │ ├── autoheight.html │ │ │ │ ├── basic.html │ │ │ │ ├── dropdown.html │ │ │ │ ├── fixedwidth.html │ │ │ │ ├── fluid.html │ │ │ │ ├── hover.html │ │ │ │ ├── images │ │ │ │ │ ├── modem.png │ │ │ │ │ ├── pda.png │ │ │ │ │ ├── scanner.png │ │ │ │ │ └── tablet.png │ │ │ │ ├── nestedtabs.html │ │ │ │ ├── striptools.html │ │ │ │ ├── style.html │ │ │ │ ├── tabimage.html │ │ │ │ ├── tabposition.html │ │ │ │ ├── tabstools.html │ │ │ │ └── tree_data1.json │ │ │ ├── tagbox │ │ │ │ ├── autocomplete.html │ │ │ │ ├── basic.html │ │ │ │ ├── button.html │ │ │ │ ├── format.html │ │ │ │ ├── style.html │ │ │ │ ├── tagbox_data1.json │ │ │ │ └── validate.html │ │ │ ├── textbox │ │ │ │ ├── basic.html │ │ │ │ ├── button.html │ │ │ │ ├── clearicon.html │ │ │ │ ├── custom.html │ │ │ │ ├── fluid.html │ │ │ │ ├── icons.html │ │ │ │ ├── multiline.html │ │ │ │ └── size.html │ │ │ ├── timespinner │ │ │ │ ├── actions.html │ │ │ │ ├── basic.html │ │ │ │ ├── fluid.html │ │ │ │ └── range.html │ │ │ ├── tooltip │ │ │ │ ├── _content.html │ │ │ │ ├── _dialog.html │ │ │ │ ├── ajax.html │ │ │ │ ├── basic.html │ │ │ │ ├── customcontent.html │ │ │ │ ├── customstyle.html │ │ │ │ ├── position.html │ │ │ │ ├── toolbar.html │ │ │ │ └── tooltipdialog.html │ │ │ ├── tree │ │ │ │ ├── actions.html │ │ │ │ ├── animation.html │ │ │ │ ├── basic.html │ │ │ │ ├── checkbox.html │ │ │ │ ├── contextmenu.html │ │ │ │ ├── customcheckbox.html │ │ │ │ ├── dnd.html │ │ │ │ ├── editable.html │ │ │ │ ├── formatting.html │ │ │ │ ├── icons.html │ │ │ │ ├── lazyload.html │ │ │ │ ├── lines.html │ │ │ │ ├── tree_data1.json │ │ │ │ └── tree_data2.json │ │ │ ├── treegrid │ │ │ │ ├── actions.html │ │ │ │ ├── basic.html │ │ │ │ ├── checkbox.html │ │ │ │ ├── clientpagination.html │ │ │ │ ├── contextmenu.html │ │ │ │ ├── customcheckbox.html │ │ │ │ ├── editable.html │ │ │ │ ├── fluid.html │ │ │ │ ├── footer.html │ │ │ │ ├── lines.html │ │ │ │ ├── reports.html │ │ │ │ ├── treegrid_data1.json │ │ │ │ ├── treegrid_data2.json │ │ │ │ └── treegrid_data3.json │ │ │ ├── validatebox │ │ │ │ ├── basic.html │ │ │ │ ├── customtooltip.html │ │ │ │ ├── errorplacement.html │ │ │ │ └── validateonblur.html │ │ │ └── window │ │ │ │ ├── basic.html │ │ │ │ ├── borderstyle.html │ │ │ │ ├── customtools.html │ │ │ │ ├── fluid.html │ │ │ │ ├── footer.html │ │ │ │ ├── inlinewindow.html │ │ │ │ ├── modalwindow.html │ │ │ │ └── windowlayout.html │ │ ├── easyloader.js │ │ ├── extensions │ │ │ └── jquery.portal.js │ │ ├── jquery.easyui.min.js │ │ ├── jquery.easyui.mobile.js │ │ ├── jquery.min.js │ │ ├── license_freeware.txt │ │ ├── locale │ │ │ ├── easyui-lang-af.js │ │ │ ├── easyui-lang-am.js │ │ │ ├── easyui-lang-ar.js │ │ │ ├── easyui-lang-bg.js │ │ │ ├── easyui-lang-ca.js │ │ │ ├── easyui-lang-cs.js │ │ │ ├── easyui-lang-cz.js │ │ │ ├── easyui-lang-da.js │ │ │ ├── easyui-lang-de.js │ │ │ ├── easyui-lang-el.js │ │ │ ├── easyui-lang-en.js │ │ │ ├── easyui-lang-es.js │ │ │ ├── easyui-lang-fa.js │ │ │ ├── easyui-lang-fr.js │ │ │ ├── easyui-lang-it.js │ │ │ ├── easyui-lang-jp.js │ │ │ ├── easyui-lang-ko.js │ │ │ ├── easyui-lang-nl.js │ │ │ ├── easyui-lang-pl.js │ │ │ ├── easyui-lang-pt_BR.js │ │ │ ├── easyui-lang-ru.js │ │ │ ├── easyui-lang-sv_SE.js │ │ │ ├── easyui-lang-tr.js │ │ │ ├── easyui-lang-ua.js │ │ │ ├── easyui-lang-zh_CN.js │ │ │ └── easyui-lang-zh_TW.js │ │ ├── plugins │ │ │ ├── jquery.accordion.js │ │ │ ├── jquery.calendar.js │ │ │ ├── jquery.checkbox.js │ │ │ ├── jquery.combo.js │ │ │ ├── jquery.combobox.js │ │ │ ├── jquery.combogrid.js │ │ │ ├── jquery.combotree.js │ │ │ ├── jquery.combotreegrid.js │ │ │ ├── jquery.datagrid.js │ │ │ ├── jquery.datalist.js │ │ │ ├── jquery.datebox.js │ │ │ ├── jquery.datetimebox.js │ │ │ ├── jquery.datetimespinner.js │ │ │ ├── jquery.dialog.js │ │ │ ├── jquery.draggable.js │ │ │ ├── jquery.droppable.js │ │ │ ├── jquery.filebox.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.layout.js │ │ │ ├── jquery.linkbutton.js │ │ │ ├── jquery.maskedbox.js │ │ │ ├── jquery.menu.js │ │ │ ├── jquery.menubutton.js │ │ │ ├── jquery.messager.js │ │ │ ├── jquery.mobile.js │ │ │ ├── jquery.numberbox.js │ │ │ ├── jquery.numberspinner.js │ │ │ ├── jquery.pagination.js │ │ │ ├── jquery.panel.js │ │ │ ├── jquery.parser.js │ │ │ ├── jquery.passwordbox.js │ │ │ ├── jquery.progressbar.js │ │ │ ├── jquery.propertygrid.js │ │ │ ├── jquery.radiobutton.js │ │ │ ├── jquery.resizable.js │ │ │ ├── jquery.searchbox.js │ │ │ ├── jquery.sidemenu.js │ │ │ ├── jquery.slider.js │ │ │ ├── jquery.spinner.js │ │ │ ├── jquery.splitbutton.js │ │ │ ├── jquery.switchbutton.js │ │ │ ├── jquery.tabs.js │ │ │ ├── jquery.tagbox.js │ │ │ ├── jquery.textbox.js │ │ │ ├── jquery.timespinner.js │ │ │ ├── jquery.tooltip.js │ │ │ ├── jquery.tree.js │ │ │ ├── jquery.treegrid.js │ │ │ ├── jquery.validatebox.js │ │ │ └── jquery.window.js │ │ ├── readme.txt │ │ ├── src │ │ │ ├── easyloader.js │ │ │ ├── jquery.accordion.js │ │ │ ├── jquery.calendar.js │ │ │ ├── jquery.combobox.js │ │ │ ├── jquery.datebox.js │ │ │ ├── jquery.draggable.js │ │ │ ├── jquery.droppable.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.linkbutton.js │ │ │ ├── jquery.menu.js │ │ │ ├── jquery.parser.js │ │ │ ├── jquery.progressbar.js │ │ │ ├── jquery.propertygrid.js │ │ │ ├── jquery.resizable.js │ │ │ ├── jquery.slider.js │ │ │ ├── jquery.tabs.js │ │ │ └── jquery.window.js │ │ └── themes │ │ │ ├── angular.css │ │ │ ├── black │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── checkbox.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datalist.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── filebox.css │ │ │ ├── images │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── blank.gif │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── loading.gif │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── passwordbox_close.png │ │ │ │ ├── passwordbox_open.png │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tagbox_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── numberbox.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── passwordbox.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── radiobutton.css │ │ │ ├── searchbox.css │ │ │ ├── sidemenu.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── switchbutton.css │ │ │ ├── tabs.css │ │ │ ├── tagbox.css │ │ │ ├── textbox.css │ │ │ ├── tooltip.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── bootstrap │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── checkbox.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datalist.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── filebox.css │ │ │ ├── images │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── blank.gif │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── loading.gif │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── passwordbox_close.png │ │ │ │ ├── passwordbox_open.png │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tagbox_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── numberbox.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── passwordbox.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── radiobutton.css │ │ │ ├── searchbox.css │ │ │ ├── sidemenu.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── switchbutton.css │ │ │ ├── tabs.css │ │ │ ├── tagbox.css │ │ │ ├── textbox.css │ │ │ ├── tooltip.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── color.css │ │ │ ├── default │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── checkbox.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datalist.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── filebox.css │ │ │ ├── images │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── blank.gif │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── loading.gif │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── passwordbox_close.png │ │ │ │ ├── passwordbox_open.png │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tagbox_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── numberbox.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── passwordbox.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── radiobutton.css │ │ │ ├── searchbox.css │ │ │ ├── sidemenu.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── switchbutton.css │ │ │ ├── tabs.css │ │ │ ├── tagbox.css │ │ │ ├── textbox.css │ │ │ ├── tooltip.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── gray │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── checkbox.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── datagrid.css │ │ │ ├── datalist.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── filebox.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── images │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── blank.gif │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── loading.gif │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── passwordbox_close.png │ │ │ │ ├── passwordbox_open.png │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tagbox_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── numberbox.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── passwordbox.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── radiobutton.css │ │ │ ├── searchbox.css │ │ │ ├── sidemenu.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── switchbutton.css │ │ │ ├── tabs.css │ │ │ ├── tagbox.css │ │ │ ├── textbox.css │ │ │ ├── tooltip.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── icon.css │ │ │ ├── icons │ │ │ ├── back.png │ │ │ ├── blank.gif │ │ │ ├── cancel.png │ │ │ ├── clear.png │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── cut.png │ │ │ ├── edit_add.png │ │ │ ├── edit_remove.png │ │ │ ├── filesave.png │ │ │ ├── filter.png │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── help.png │ │ │ ├── large_chart.png │ │ │ ├── large_clipart.png │ │ │ ├── large_picture.png │ │ │ ├── large_shapes.png │ │ │ ├── large_smartart.png │ │ │ ├── lock.png │ │ │ ├── man.png │ │ │ ├── mini_add.png │ │ │ ├── mini_edit.png │ │ │ ├── mini_refresh.png │ │ │ ├── more.png │ │ │ ├── no.png │ │ │ ├── ok.png │ │ │ ├── pencil.png │ │ │ ├── print.png │ │ │ ├── redo.png │ │ │ ├── reload.png │ │ │ ├── search.png │ │ │ ├── sum.png │ │ │ ├── tip.png │ │ │ └── undo.png │ │ │ ├── material-teal │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── checkbox.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datalist.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── filebox.css │ │ │ ├── images │ │ │ │ ├── Thumbs.db │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── blank.gif │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── loading.gif │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── passwordbox_close.png │ │ │ │ ├── passwordbox_open.png │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tagbox_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── numberbox.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── passwordbox.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── radiobutton.css │ │ │ ├── searchbox.css │ │ │ ├── sidemenu.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── switchbutton.css │ │ │ ├── tabs.css │ │ │ ├── tagbox.css │ │ │ ├── textbox.css │ │ │ ├── tooltip.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── material │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── checkbox.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datalist.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── filebox.css │ │ │ ├── images │ │ │ │ ├── Thumbs.db │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── blank.gif │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── loading.gif │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── passwordbox_close.png │ │ │ │ ├── passwordbox_open.png │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tagbox_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── numberbox.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── passwordbox.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── radiobutton.css │ │ │ ├── searchbox.css │ │ │ ├── sidemenu.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── switchbutton.css │ │ │ ├── tabs.css │ │ │ ├── tagbox.css │ │ │ ├── textbox.css │ │ │ ├── tooltip.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── metro │ │ │ ├── accordion.css │ │ │ ├── calendar.css │ │ │ ├── checkbox.css │ │ │ ├── combo.css │ │ │ ├── combobox.css │ │ │ ├── datagrid.css │ │ │ ├── datalist.css │ │ │ ├── datebox.css │ │ │ ├── dialog.css │ │ │ ├── easyui.css │ │ │ ├── filebox.css │ │ │ ├── images │ │ │ │ ├── accordion_arrows.png │ │ │ │ ├── blank.gif │ │ │ │ ├── calendar_arrows.png │ │ │ │ ├── combo_arrow.png │ │ │ │ ├── datagrid_icons.png │ │ │ │ ├── datebox_arrow.png │ │ │ │ ├── layout_arrows.png │ │ │ │ ├── linkbutton_bg.png │ │ │ │ ├── loading.gif │ │ │ │ ├── menu_arrows.png │ │ │ │ ├── messager_icons.png │ │ │ │ ├── pagination_icons.png │ │ │ │ ├── panel_tools.png │ │ │ │ ├── passwordbox_close.png │ │ │ │ ├── passwordbox_open.png │ │ │ │ ├── searchbox_button.png │ │ │ │ ├── slider_handle.png │ │ │ │ ├── spinner_arrows.png │ │ │ │ ├── tabs_icons.png │ │ │ │ ├── tagbox_icons.png │ │ │ │ ├── tree_icons.png │ │ │ │ └── validatebox_warning.png │ │ │ ├── layout.css │ │ │ ├── linkbutton.css │ │ │ ├── menu.css │ │ │ ├── menubutton.css │ │ │ ├── messager.css │ │ │ ├── numberbox.css │ │ │ ├── pagination.css │ │ │ ├── panel.css │ │ │ ├── passwordbox.css │ │ │ ├── progressbar.css │ │ │ ├── propertygrid.css │ │ │ ├── radiobutton.css │ │ │ ├── searchbox.css │ │ │ ├── sidemenu.css │ │ │ ├── slider.css │ │ │ ├── spinner.css │ │ │ ├── splitbutton.css │ │ │ ├── switchbutton.css │ │ │ ├── tabs.css │ │ │ ├── tagbox.css │ │ │ ├── textbox.css │ │ │ ├── tooltip.css │ │ │ ├── tree.css │ │ │ ├── validatebox.css │ │ │ └── window.css │ │ │ ├── mobile.css │ │ │ └── vue.css │ ├── example │ │ └── pagination.html │ ├── gulpfile.js │ ├── img │ │ └── favicon.png │ ├── index.html │ ├── js │ │ ├── data │ │ │ ├── datagrid_data.json │ │ │ ├── pg_data.json │ │ │ ├── tree_data.json │ │ │ └── tree_grid_data.json │ │ └── super.js │ └── package.json ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── fsLayui │ ├── 404.html │ ├── ZtreeSelect.html │ ├── css │ │ ├── fs.css │ │ └── layui-select-multiple.css │ ├── images │ │ ├── 2017-12-20_17-29-51.gif │ │ ├── 2017-12-20_17-48-15.gif │ │ ├── 2017-12-26_10-50-53.gif │ │ ├── add.png │ │ ├── datagrid.png │ │ ├── face.jpg │ │ ├── favicon.ico │ │ ├── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.js │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ └── iconfont.woff │ │ ├── left.gif │ │ ├── linkageDatagrid2.png │ │ ├── login-bg.jpg │ │ ├── login-bg1.jpg │ │ ├── login-bg2.jpg │ │ ├── login-bg3.jpg │ │ ├── menu.png │ │ ├── menu_o.png │ │ ├── multiDatagrid.png │ │ ├── right.gif │ │ ├── temp-bg.jpg │ │ ├── treeDatagrid.png │ │ └── zhifu.png │ ├── index.html │ ├── plugins │ │ ├── contextMenu │ │ │ ├── font │ │ │ │ ├── context-menu-icons.eot │ │ │ │ ├── context-menu-icons.ttf │ │ │ │ ├── context-menu-icons.woff │ │ │ │ └── context-menu-icons.woff2 │ │ │ ├── jquery.contextMenu.min.css │ │ │ └── jquery.contextMenu.min.js │ │ ├── echarts │ │ │ └── echarts.min.js │ │ ├── font-awesome │ │ │ ├── HELP-US-OUT.txt │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── screen-reader.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ ├── frame │ │ │ ├── js │ │ │ │ ├── frame.js │ │ │ │ ├── fs.js │ │ │ │ ├── fsButtonCommon.js │ │ │ │ ├── fsCommon.js │ │ │ │ ├── fsConfig.js │ │ │ │ ├── fsDatagrid.js │ │ │ │ ├── fsDict.js │ │ │ │ ├── fsForm.js │ │ │ │ ├── fsMenu.js │ │ │ │ ├── fsTab.js │ │ │ │ ├── fsTree.js │ │ │ │ ├── fsframe.js │ │ │ │ └── main.js │ │ │ └── views │ │ │ │ └── upload.html │ │ ├── jquery │ │ │ └── jquery.min.js │ │ ├── layui │ │ │ ├── css │ │ │ │ ├── layui.css │ │ │ │ ├── layui.mobile.css │ │ │ │ └── modules │ │ │ │ │ ├── code.css │ │ │ │ │ ├── laydate │ │ │ │ │ └── default │ │ │ │ │ │ └── laydate.css │ │ │ │ │ └── layer │ │ │ │ │ └── default │ │ │ │ │ ├── icon-ext.png │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── layer.css │ │ │ │ │ ├── loading-0.gif │ │ │ │ │ ├── loading-1.gif │ │ │ │ │ └── loading-2.gif │ │ │ ├── font │ │ │ │ ├── iconfont.eot │ │ │ │ ├── iconfont.svg │ │ │ │ ├── iconfont.ttf │ │ │ │ └── iconfont.woff │ │ │ ├── images │ │ │ │ └── face │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── 1.gif │ │ │ │ │ ├── 10.gif │ │ │ │ │ ├── 11.gif │ │ │ │ │ ├── 12.gif │ │ │ │ │ ├── 13.gif │ │ │ │ │ ├── 14.gif │ │ │ │ │ ├── 15.gif │ │ │ │ │ ├── 16.gif │ │ │ │ │ ├── 17.gif │ │ │ │ │ ├── 18.gif │ │ │ │ │ ├── 19.gif │ │ │ │ │ ├── 2.gif │ │ │ │ │ ├── 20.gif │ │ │ │ │ ├── 21.gif │ │ │ │ │ ├── 22.gif │ │ │ │ │ ├── 23.gif │ │ │ │ │ ├── 24.gif │ │ │ │ │ ├── 25.gif │ │ │ │ │ ├── 26.gif │ │ │ │ │ ├── 27.gif │ │ │ │ │ ├── 28.gif │ │ │ │ │ ├── 29.gif │ │ │ │ │ ├── 3.gif │ │ │ │ │ ├── 30.gif │ │ │ │ │ ├── 31.gif │ │ │ │ │ ├── 32.gif │ │ │ │ │ ├── 33.gif │ │ │ │ │ ├── 34.gif │ │ │ │ │ ├── 35.gif │ │ │ │ │ ├── 36.gif │ │ │ │ │ ├── 37.gif │ │ │ │ │ ├── 38.gif │ │ │ │ │ ├── 39.gif │ │ │ │ │ ├── 4.gif │ │ │ │ │ ├── 40.gif │ │ │ │ │ ├── 41.gif │ │ │ │ │ ├── 42.gif │ │ │ │ │ ├── 43.gif │ │ │ │ │ ├── 44.gif │ │ │ │ │ ├── 45.gif │ │ │ │ │ ├── 46.gif │ │ │ │ │ ├── 47.gif │ │ │ │ │ ├── 48.gif │ │ │ │ │ ├── 49.gif │ │ │ │ │ ├── 5.gif │ │ │ │ │ ├── 50.gif │ │ │ │ │ ├── 51.gif │ │ │ │ │ ├── 52.gif │ │ │ │ │ ├── 53.gif │ │ │ │ │ ├── 54.gif │ │ │ │ │ ├── 55.gif │ │ │ │ │ ├── 56.gif │ │ │ │ │ ├── 57.gif │ │ │ │ │ ├── 58.gif │ │ │ │ │ ├── 59.gif │ │ │ │ │ ├── 6.gif │ │ │ │ │ ├── 60.gif │ │ │ │ │ ├── 61.gif │ │ │ │ │ ├── 62.gif │ │ │ │ │ ├── 63.gif │ │ │ │ │ ├── 64.gif │ │ │ │ │ ├── 65.gif │ │ │ │ │ ├── 66.gif │ │ │ │ │ ├── 67.gif │ │ │ │ │ ├── 68.gif │ │ │ │ │ ├── 69.gif │ │ │ │ │ ├── 7.gif │ │ │ │ │ ├── 70.gif │ │ │ │ │ ├── 71.gif │ │ │ │ │ ├── 8.gif │ │ │ │ │ └── 9.gif │ │ │ ├── lay │ │ │ │ └── modules │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── code.js │ │ │ │ │ ├── element.js │ │ │ │ │ ├── flow.js │ │ │ │ │ ├── form.bak.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── laydate.js │ │ │ │ │ ├── layedit.js │ │ │ │ │ ├── layer.js │ │ │ │ │ ├── laypage.js │ │ │ │ │ ├── laytpl.js │ │ │ │ │ ├── mobile.js │ │ │ │ │ ├── table.js │ │ │ │ │ ├── tree.js │ │ │ │ │ ├── upload.js │ │ │ │ │ └── util.js │ │ │ ├── layui.all.js │ │ │ └── layui.js │ │ ├── pace │ │ │ ├── pace-theme-flash.css │ │ │ └── pace.min.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 │ │ │ └── zteeSelect.css │ │ │ └── js │ │ │ ├── jquery.ztree.all.min.js │ │ │ └── ztreeSelect.js │ ├── scripts │ │ └── home │ │ │ └── index.js │ └── views │ │ ├── complexDatagrid │ │ ├── add.html │ │ ├── addParam.html │ │ ├── edit.html │ │ ├── editParam.html │ │ ├── index.html │ │ └── paramIndex.html │ │ ├── datagrid │ │ ├── add.html │ │ ├── edit.html │ │ └── index.html │ │ ├── datagrid2 │ │ ├── index.html │ │ └── one.html │ │ ├── home │ │ └── index.html │ │ ├── linkageDatagrid │ │ └── index.html │ │ ├── linkageDatagrid2 │ │ └── index.html │ │ ├── multiDatagrid │ │ └── index.html │ │ ├── staticDatagrid │ │ ├── add.html │ │ └── index.html │ │ ├── tabDatagrid │ │ ├── add.html │ │ ├── edit.html │ │ └── index.html │ │ └── treeDatagrid │ │ ├── add.html │ │ ├── addFunc.html │ │ ├── edit.html │ │ ├── editFunc.html │ │ └── index.html ├── log │ ├── 20180409.txt │ ├── 20180409.txt.1 │ ├── 20180410.txt │ ├── 20180411.txt │ ├── 20180412.txt │ ├── 20180413.txt │ ├── 20180427.txt │ ├── 20180507.txt │ ├── 20180510.txt │ ├── 20180511.txt │ ├── 20180514.txt │ ├── 20180515.txt │ ├── 20180516.txt │ ├── 20190218.txt │ ├── 20190219.txt │ └── 20190311.txt ├── log4net.config ├── packages.config └── umeditor1_2_2-utf8-net │ ├── dialogs │ ├── emotion │ │ ├── emotion.css │ │ ├── emotion.js │ │ └── images │ │ │ ├── 0.gif │ │ │ ├── bface.gif │ │ │ ├── cface.gif │ │ │ ├── fface.gif │ │ │ ├── jxface2.gif │ │ │ ├── neweditor-tab-bg.png │ │ │ ├── tface.gif │ │ │ ├── wface.gif │ │ │ └── yface.gif │ ├── formula │ │ ├── formula.css │ │ ├── formula.html │ │ ├── formula.js │ │ └── images │ │ │ └── formula.png │ ├── image │ │ ├── image.css │ │ ├── image.js │ │ └── images │ │ │ ├── close.png │ │ │ ├── upload1.png │ │ │ └── upload2.png │ ├── link │ │ └── link.js │ ├── map │ │ ├── map.html │ │ └── map.js │ └── video │ │ ├── images │ │ ├── center_focus.jpg │ │ ├── left_focus.jpg │ │ ├── none_focus.jpg │ │ └── right_focus.jpg │ │ ├── video.css │ │ └── video.js │ ├── index.html │ ├── lang │ ├── en │ │ ├── en.js │ │ └── images │ │ │ ├── addimage.png │ │ │ ├── alldeletebtnhoverskin.png │ │ │ ├── alldeletebtnupskin.png │ │ │ ├── background.png │ │ │ ├── button.png │ │ │ ├── copy.png │ │ │ ├── deletedisable.png │ │ │ ├── deleteenable.png │ │ │ ├── imglabel.png │ │ │ ├── listbackground.png │ │ │ ├── localimage.png │ │ │ ├── music.png │ │ │ ├── rotateleftdisable.png │ │ │ ├── rotateleftenable.png │ │ │ ├── rotaterightdisable.png │ │ │ ├── rotaterightenable.png │ │ │ └── upload.png │ └── zh-cn │ │ ├── images │ │ ├── copy.png │ │ ├── imglabel.png │ │ ├── localimage.png │ │ ├── music.png │ │ └── upload.png │ │ └── zh-cn.js │ ├── net │ ├── Uploader.cs │ ├── getContent.ashx │ └── imageUp.ashx │ ├── themes │ └── default │ │ ├── css │ │ ├── umeditor.css │ │ └── umeditor.min.css │ │ └── images │ │ ├── caret.png │ │ ├── close.png │ │ ├── icons.gif │ │ ├── icons.png │ │ ├── ok.gif │ │ ├── pop-bg.png │ │ ├── spacer.gif │ │ └── videologo.gif │ ├── third-party │ ├── jquery.min.js │ └── mathquill │ │ ├── font │ │ ├── Symbola.eot │ │ ├── Symbola.otf │ │ ├── Symbola.svg │ │ ├── Symbola.ttf │ │ ├── Symbola.woff │ │ └── stixgeneral-bundle │ │ │ ├── STIXFontLicense2010.txt │ │ │ ├── stixgeneral-webfont.eot │ │ │ ├── stixgeneral-webfont.svg │ │ │ ├── stixgeneral-webfont.ttf │ │ │ ├── stixgeneral-webfont.woff │ │ │ ├── stixgeneralbol-webfont.eot │ │ │ ├── stixgeneralbol-webfont.svg │ │ │ ├── stixgeneralbol-webfont.ttf │ │ │ ├── stixgeneralbol-webfont.woff │ │ │ ├── stixgeneralbolita-webfont.eot │ │ │ ├── stixgeneralbolita-webfont.svg │ │ │ ├── stixgeneralbolita-webfont.ttf │ │ │ ├── stixgeneralbolita-webfont.woff │ │ │ ├── stixgeneralitalic-webfont.eot │ │ │ ├── stixgeneralitalic-webfont.svg │ │ │ ├── stixgeneralitalic-webfont.ttf │ │ │ └── stixgeneralitalic-webfont.woff │ │ ├── mathquill.css │ │ ├── mathquill.js │ │ └── mathquill.min.js │ ├── umeditor.config.js │ ├── umeditor.js │ └── umeditor.min.js ├── NBCZ.sln ├── NBCZ.v12.suo ├── README.md ├── SECURITY.md ├── db └── NBCZ20180517.bak ├── tg.jpg ├── zs.jpg ├── zswx.jpg ├── zszfb.jpg └── 说明.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/NBCZ/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/.vs/NBCZ/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /.vs/NBCZ/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/.vs/NBCZ/config/applicationhost.config -------------------------------------------------------------------------------- /.vs/NBCZ/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/.vs/NBCZ/v15/.suo -------------------------------------------------------------------------------- /.vs/NBCZ/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/NBCZ/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/.vs/NBCZ/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/NBCZ/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/.vs/NBCZ/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/NBCZ/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/.vs/NBCZ/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /.vs/NBCZ/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/.vs/NBCZ/v16/.suo -------------------------------------------------------------------------------- /.vs/NBCZ/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/NBCZ/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/.vs/NBCZ/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /1529981048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/1529981048.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/LICENSE -------------------------------------------------------------------------------- /NBCZ.BLL/NBCZ.BLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/NBCZ.BLL.csproj -------------------------------------------------------------------------------- /NBCZ.BLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NBCZ.BLL/Pub_DepartmentBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/Pub_DepartmentBLL.cs -------------------------------------------------------------------------------- /NBCZ.BLL/Pub_FunctionBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/Pub_FunctionBLL.cs -------------------------------------------------------------------------------- /NBCZ.BLL/Pub_RoleBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/Pub_RoleBLL.cs -------------------------------------------------------------------------------- /NBCZ.BLL/Pub_UserBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/Pub_UserBLL.cs -------------------------------------------------------------------------------- /NBCZ.BLL/Pub_UserFunctionBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/Pub_UserFunctionBLL.cs -------------------------------------------------------------------------------- /NBCZ.BLL/Pub_UserRoleBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/Pub_UserRoleBLL.cs -------------------------------------------------------------------------------- /NBCZ.BLL/T4.DapperExt/BaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/T4.DapperExt/BaseService.cs -------------------------------------------------------------------------------- /NBCZ.BLL/T4.DapperExt/Business.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/T4.DapperExt/Business.tt -------------------------------------------------------------------------------- /NBCZ.BLL/T4.DapperExt/Business.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/T4.DapperExt/Business.txt -------------------------------------------------------------------------------- /NBCZ.BLL/T4.DapperExt/Pub_DepartmentBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/T4.DapperExt/Pub_DepartmentBLL.cs -------------------------------------------------------------------------------- /NBCZ.BLL/T4.DapperExt/Pub_FunctionBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/T4.DapperExt/Pub_FunctionBLL.cs -------------------------------------------------------------------------------- /NBCZ.BLL/T4.DapperExt/Pub_RoleBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/T4.DapperExt/Pub_RoleBLL.cs -------------------------------------------------------------------------------- /NBCZ.BLL/T4.DapperExt/Pub_RoleFunctionBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/T4.DapperExt/Pub_RoleFunctionBLL.cs -------------------------------------------------------------------------------- /NBCZ.BLL/T4.DapperExt/Pub_UserBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/T4.DapperExt/Pub_UserBLL.cs -------------------------------------------------------------------------------- /NBCZ.BLL/T4.DapperExt/Pub_UserFunctionBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/T4.DapperExt/Pub_UserFunctionBLL.cs -------------------------------------------------------------------------------- /NBCZ.BLL/T4.DapperExt/Pub_UserRoleBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/T4.DapperExt/Pub_UserRoleBLL.cs -------------------------------------------------------------------------------- /NBCZ.BLL/T4.DapperExt/V_PubUser_DeptBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/T4.DapperExt/V_PubUser_DeptBLL.cs -------------------------------------------------------------------------------- /NBCZ.BLL/V_PubUser_DeptBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/V_PubUser_DeptBLL.cs -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/AutoMapper.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/AutoMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/AutoMapper.xml -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/Dapper.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/Dapper.xml -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/DapperExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/DapperExtensions.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/DapperExtensions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/DapperExtensions.pdb -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/NBCZ.BLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/NBCZ.BLL.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/NBCZ.BLL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/NBCZ.BLL.pdb -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/NBCZ.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/NBCZ.Common.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/NBCZ.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/NBCZ.Common.pdb -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/NBCZ.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/NBCZ.DAL.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/NBCZ.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/NBCZ.DAL.pdb -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/NBCZ.DBUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/NBCZ.DBUtility.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/NBCZ.DBUtility.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/NBCZ.DBUtility.pdb -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/NBCZ.Model.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/NBCZ.Model.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/NBCZ.Model.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/NBCZ.Model.pdb -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/TinyMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/TinyMapper.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/log4net.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Debug/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Debug/log4net.xml -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/AutoMapper.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/AutoMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/AutoMapper.xml -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/Dapper.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/Dapper.xml -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/DapperExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/DapperExtensions.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/DapperExtensions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/DapperExtensions.pdb -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/NBCZ.BLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/NBCZ.BLL.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/NBCZ.BLL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/NBCZ.BLL.pdb -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/NBCZ.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/NBCZ.Common.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/NBCZ.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/NBCZ.Common.pdb -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/NBCZ.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/NBCZ.DAL.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/NBCZ.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/NBCZ.DAL.pdb -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/NBCZ.DBUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/NBCZ.DBUtility.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/NBCZ.DBUtility.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/NBCZ.DBUtility.pdb -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/NBCZ.Model.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/NBCZ.Model.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/NBCZ.Model.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/NBCZ.Model.pdb -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/TinyMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/TinyMapper.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/log4net.dll -------------------------------------------------------------------------------- /NBCZ.BLL/bin/Release/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/bin/Release/log4net.xml -------------------------------------------------------------------------------- /NBCZ.BLL/obj/Debug/NBCZ.BLL.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.BLL/obj/Debug/NBCZ.BLL.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/obj/Debug/NBCZ.BLL.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /NBCZ.BLL/obj/Debug/NBCZ.BLL.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/obj/Debug/NBCZ.BLL.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /NBCZ.BLL/obj/Debug/NBCZ.BLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/obj/Debug/NBCZ.BLL.dll -------------------------------------------------------------------------------- /NBCZ.BLL/obj/Debug/NBCZ.BLL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/obj/Debug/NBCZ.BLL.pdb -------------------------------------------------------------------------------- /NBCZ.BLL/obj/Debug/TempPE/T4.DapperExt.Business.txt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/obj/Debug/TempPE/T4.DapperExt.Business.txt.dll -------------------------------------------------------------------------------- /NBCZ.BLL/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.BLL/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.BLL/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.BLL/obj/Release/NBCZ.BLL.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.BLL/obj/Release/NBCZ.BLL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 1902c7589d1318863dc52a9ba16c9ad1aaf95376 2 | -------------------------------------------------------------------------------- /NBCZ.BLL/obj/Release/NBCZ.BLL.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/obj/Release/NBCZ.BLL.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /NBCZ.BLL/obj/Release/NBCZ.BLL.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/obj/Release/NBCZ.BLL.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /NBCZ.BLL/obj/Release/NBCZ.BLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/obj/Release/NBCZ.BLL.dll -------------------------------------------------------------------------------- /NBCZ.BLL/obj/Release/NBCZ.BLL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/obj/Release/NBCZ.BLL.pdb -------------------------------------------------------------------------------- /NBCZ.BLL/obj/Release/TempPE/T4.DapperExt.Business.txt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/obj/Release/TempPE/T4.DapperExt.Business.txt.dll -------------------------------------------------------------------------------- /NBCZ.BLL/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.BLL/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.BLL/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.BLL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.BLL/packages.config -------------------------------------------------------------------------------- /NBCZ.Common/AutoMapperHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/AutoMapperHelper.cs -------------------------------------------------------------------------------- /NBCZ.Common/ConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/ConfigHelper.cs -------------------------------------------------------------------------------- /NBCZ.Common/DBHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/DBHelper.cs -------------------------------------------------------------------------------- /NBCZ.Common/DataCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/DataCache.cs -------------------------------------------------------------------------------- /NBCZ.Common/Desc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/Desc.cs -------------------------------------------------------------------------------- /NBCZ.Common/LogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/LogHelper.cs -------------------------------------------------------------------------------- /NBCZ.Common/NBCZ.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/NBCZ.Common.csproj -------------------------------------------------------------------------------- /NBCZ.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NBCZ.Common/TinyMapperHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/TinyMapperHelper.cs -------------------------------------------------------------------------------- /NBCZ.Common/ValidateCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/ValidateCode.cs -------------------------------------------------------------------------------- /NBCZ.Common/bin/Debug/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/bin/Debug/AutoMapper.dll -------------------------------------------------------------------------------- /NBCZ.Common/bin/Debug/AutoMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/bin/Debug/AutoMapper.xml -------------------------------------------------------------------------------- /NBCZ.Common/bin/Debug/NBCZ.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/bin/Debug/NBCZ.Common.dll -------------------------------------------------------------------------------- /NBCZ.Common/bin/Debug/NBCZ.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/bin/Debug/NBCZ.Common.pdb -------------------------------------------------------------------------------- /NBCZ.Common/bin/Debug/TinyMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/bin/Debug/TinyMapper.dll -------------------------------------------------------------------------------- /NBCZ.Common/bin/Debug/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/bin/Debug/log4net.dll -------------------------------------------------------------------------------- /NBCZ.Common/bin/Debug/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/bin/Debug/log4net.xml -------------------------------------------------------------------------------- /NBCZ.Common/bin/Release/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/bin/Release/AutoMapper.dll -------------------------------------------------------------------------------- /NBCZ.Common/bin/Release/AutoMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/bin/Release/AutoMapper.xml -------------------------------------------------------------------------------- /NBCZ.Common/bin/Release/NBCZ.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/bin/Release/NBCZ.Common.dll -------------------------------------------------------------------------------- /NBCZ.Common/bin/Release/NBCZ.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/bin/Release/NBCZ.Common.pdb -------------------------------------------------------------------------------- /NBCZ.Common/bin/Release/TinyMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/bin/Release/TinyMapper.dll -------------------------------------------------------------------------------- /NBCZ.Common/bin/Release/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/bin/Release/log4net.dll -------------------------------------------------------------------------------- /NBCZ.Common/bin/Release/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/bin/Release/log4net.xml -------------------------------------------------------------------------------- /NBCZ.Common/obj/Debug/NBCZ.Common.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Common/obj/Debug/NBCZ.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/obj/Debug/NBCZ.Common.dll -------------------------------------------------------------------------------- /NBCZ.Common/obj/Debug/NBCZ.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/obj/Debug/NBCZ.Common.pdb -------------------------------------------------------------------------------- /NBCZ.Common/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Common/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Common/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Common/obj/Release/NBCZ.Common.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Common/obj/Release/NBCZ.Common.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 665af061055d6aa6b1323373d229135bda9d1bc6 2 | -------------------------------------------------------------------------------- /NBCZ.Common/obj/Release/NBCZ.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/obj/Release/NBCZ.Common.dll -------------------------------------------------------------------------------- /NBCZ.Common/obj/Release/NBCZ.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/obj/Release/NBCZ.Common.pdb -------------------------------------------------------------------------------- /NBCZ.Common/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Common/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Common/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Common/packages.config -------------------------------------------------------------------------------- /NBCZ.DAL/NBCZ.DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/NBCZ.DAL.csproj -------------------------------------------------------------------------------- /NBCZ.DAL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NBCZ.DAL/Pub_DepartmentDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/Pub_DepartmentDAL.cs -------------------------------------------------------------------------------- /NBCZ.DAL/Pub_FunctionDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/Pub_FunctionDAL.cs -------------------------------------------------------------------------------- /NBCZ.DAL/Pub_RoleDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/Pub_RoleDAL.cs -------------------------------------------------------------------------------- /NBCZ.DAL/Pub_UserDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/Pub_UserDAL.cs -------------------------------------------------------------------------------- /NBCZ.DAL/Pub_UserFunctionDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/Pub_UserFunctionDAL.cs -------------------------------------------------------------------------------- /NBCZ.DAL/Pub_UserRoleDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/Pub_UserRoleDAL.cs -------------------------------------------------------------------------------- /NBCZ.DAL/T4.DapperExt/BaseData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/T4.DapperExt/BaseData.cs -------------------------------------------------------------------------------- /NBCZ.DAL/T4.DapperExt/DataAccess.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/T4.DapperExt/DataAccess.tt -------------------------------------------------------------------------------- /NBCZ.DAL/T4.DapperExt/DataAccess.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/T4.DapperExt/DataAccess.txt -------------------------------------------------------------------------------- /NBCZ.DAL/T4.DapperExt/Pub_DepartmentDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/T4.DapperExt/Pub_DepartmentDAL.cs -------------------------------------------------------------------------------- /NBCZ.DAL/T4.DapperExt/Pub_FunctionDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/T4.DapperExt/Pub_FunctionDAL.cs -------------------------------------------------------------------------------- /NBCZ.DAL/T4.DapperExt/Pub_RoleDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/T4.DapperExt/Pub_RoleDAL.cs -------------------------------------------------------------------------------- /NBCZ.DAL/T4.DapperExt/Pub_RoleFunctionDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/T4.DapperExt/Pub_RoleFunctionDAL.cs -------------------------------------------------------------------------------- /NBCZ.DAL/T4.DapperExt/Pub_UserDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/T4.DapperExt/Pub_UserDAL.cs -------------------------------------------------------------------------------- /NBCZ.DAL/T4.DapperExt/Pub_UserFunctionDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/T4.DapperExt/Pub_UserFunctionDAL.cs -------------------------------------------------------------------------------- /NBCZ.DAL/T4.DapperExt/Pub_UserRoleDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/T4.DapperExt/Pub_UserRoleDAL.cs -------------------------------------------------------------------------------- /NBCZ.DAL/T4.DapperExt/V_PubUser_DeptDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/T4.DapperExt/V_PubUser_DeptDAL.cs -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Debug/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Debug/AutoMapper.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Debug/AutoMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Debug/AutoMapper.xml -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Debug/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Debug/Dapper.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Debug/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Debug/Dapper.xml -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Debug/DapperExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Debug/DapperExtensions.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Debug/DapperExtensions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Debug/DapperExtensions.pdb -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Debug/NBCZ.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Debug/NBCZ.Common.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Debug/NBCZ.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Debug/NBCZ.Common.pdb -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Debug/NBCZ.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Debug/NBCZ.DAL.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Debug/NBCZ.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Debug/NBCZ.DAL.pdb -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Debug/NBCZ.DBUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Debug/NBCZ.DBUtility.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Debug/NBCZ.DBUtility.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Debug/NBCZ.DBUtility.pdb -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Debug/NBCZ.Model.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Debug/NBCZ.Model.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Debug/NBCZ.Model.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Debug/NBCZ.Model.pdb -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Debug/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Debug/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Debug/TinyMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Debug/TinyMapper.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Debug/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Debug/log4net.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Debug/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Debug/log4net.xml -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Release/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Release/AutoMapper.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Release/AutoMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Release/AutoMapper.xml -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Release/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Release/Dapper.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Release/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Release/Dapper.xml -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Release/DapperExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Release/DapperExtensions.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Release/DapperExtensions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Release/DapperExtensions.pdb -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Release/NBCZ.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Release/NBCZ.Common.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Release/NBCZ.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Release/NBCZ.Common.pdb -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Release/NBCZ.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Release/NBCZ.DAL.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Release/NBCZ.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Release/NBCZ.DAL.pdb -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Release/NBCZ.DBUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Release/NBCZ.DBUtility.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Release/NBCZ.DBUtility.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Release/NBCZ.DBUtility.pdb -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Release/NBCZ.Model.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Release/NBCZ.Model.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Release/NBCZ.Model.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Release/NBCZ.Model.pdb -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Release/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Release/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Release/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Release/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Release/TinyMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Release/TinyMapper.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Release/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Release/log4net.dll -------------------------------------------------------------------------------- /NBCZ.DAL/bin/Release/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/bin/Release/log4net.xml -------------------------------------------------------------------------------- /NBCZ.DAL/obj/Debug/NBCZ.DAL.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.DAL/obj/Debug/NBCZ.DAL.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/obj/Debug/NBCZ.DAL.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /NBCZ.DAL/obj/Debug/NBCZ.DAL.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/obj/Debug/NBCZ.DAL.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /NBCZ.DAL/obj/Debug/NBCZ.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/obj/Debug/NBCZ.DAL.dll -------------------------------------------------------------------------------- /NBCZ.DAL/obj/Debug/NBCZ.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/obj/Debug/NBCZ.DAL.pdb -------------------------------------------------------------------------------- /NBCZ.DAL/obj/Debug/TempPE/T4.DapperExt.DataAccess.txt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/obj/Debug/TempPE/T4.DapperExt.DataAccess.txt.dll -------------------------------------------------------------------------------- /NBCZ.DAL/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.DAL/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.DAL/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.DAL/obj/Release/NBCZ.DAL.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.DAL/obj/Release/NBCZ.DAL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d54eed68bba957e044b8a63f02a0db7f55ff4ec5 2 | -------------------------------------------------------------------------------- /NBCZ.DAL/obj/Release/NBCZ.DAL.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/obj/Release/NBCZ.DAL.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /NBCZ.DAL/obj/Release/NBCZ.DAL.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/obj/Release/NBCZ.DAL.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /NBCZ.DAL/obj/Release/NBCZ.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/obj/Release/NBCZ.DAL.dll -------------------------------------------------------------------------------- /NBCZ.DAL/obj/Release/NBCZ.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/obj/Release/NBCZ.DAL.pdb -------------------------------------------------------------------------------- /NBCZ.DAL/obj/Release/TempPE/T4.DapperExt.DataAccess.txt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/obj/Release/TempPE/T4.DapperExt.DataAccess.txt.dll -------------------------------------------------------------------------------- /NBCZ.DAL/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.DAL/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.DAL/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.DAL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DAL/packages.config -------------------------------------------------------------------------------- /NBCZ.DBUtility/CommandInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/CommandInfo.cs -------------------------------------------------------------------------------- /NBCZ.DBUtility/DESEncrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/DESEncrypt.cs -------------------------------------------------------------------------------- /NBCZ.DBUtility/DbHelper/DapperHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/DbHelper/DapperHelper.cs -------------------------------------------------------------------------------- /NBCZ.DBUtility/DbHelper/Db.CS/DbEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/DbHelper/Db.CS/DbEntity.cs -------------------------------------------------------------------------------- /NBCZ.DBUtility/DbHelper/Db.CS/MsSqlDbHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/DbHelper/Db.CS/MsSqlDbHelper.cs -------------------------------------------------------------------------------- /NBCZ.DBUtility/DbHelper/DbEntity.ttinclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/DbHelper/DbEntity.ttinclude -------------------------------------------------------------------------------- /NBCZ.DBUtility/DbHelper/MsSqlDbHelper.ttinclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/DbHelper/MsSqlDbHelper.ttinclude -------------------------------------------------------------------------------- /NBCZ.DBUtility/DbHelper/OutputHelper.ttinclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/DbHelper/OutputHelper.ttinclude -------------------------------------------------------------------------------- /NBCZ.DBUtility/DbHelperSQL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/DbHelperSQL.cs -------------------------------------------------------------------------------- /NBCZ.DBUtility/NBCZ.DBUtility.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/NBCZ.DBUtility.csproj -------------------------------------------------------------------------------- /NBCZ.DBUtility/OracleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/OracleHelper.cs -------------------------------------------------------------------------------- /NBCZ.DBUtility/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NBCZ.DBUtility/bin/Debug/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/bin/Debug/Dapper.dll -------------------------------------------------------------------------------- /NBCZ.DBUtility/bin/Debug/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/bin/Debug/Dapper.xml -------------------------------------------------------------------------------- /NBCZ.DBUtility/bin/Debug/DapperExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/bin/Debug/DapperExtensions.dll -------------------------------------------------------------------------------- /NBCZ.DBUtility/bin/Debug/DapperExtensions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/bin/Debug/DapperExtensions.pdb -------------------------------------------------------------------------------- /NBCZ.DBUtility/bin/Debug/NBCZ.DBUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/bin/Debug/NBCZ.DBUtility.dll -------------------------------------------------------------------------------- /NBCZ.DBUtility/bin/Debug/NBCZ.DBUtility.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/bin/Debug/NBCZ.DBUtility.pdb -------------------------------------------------------------------------------- /NBCZ.DBUtility/bin/Release/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/bin/Release/Dapper.dll -------------------------------------------------------------------------------- /NBCZ.DBUtility/bin/Release/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/bin/Release/Dapper.xml -------------------------------------------------------------------------------- /NBCZ.DBUtility/bin/Release/DapperExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/bin/Release/DapperExtensions.dll -------------------------------------------------------------------------------- /NBCZ.DBUtility/bin/Release/DapperExtensions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/bin/Release/DapperExtensions.pdb -------------------------------------------------------------------------------- /NBCZ.DBUtility/bin/Release/NBCZ.DBUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/bin/Release/NBCZ.DBUtility.dll -------------------------------------------------------------------------------- /NBCZ.DBUtility/bin/Release/NBCZ.DBUtility.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/bin/Release/NBCZ.DBUtility.pdb -------------------------------------------------------------------------------- /NBCZ.DBUtility/obj/Debug/NBCZ.DBUtility.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.DBUtility/obj/Debug/NBCZ.DBUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/obj/Debug/NBCZ.DBUtility.dll -------------------------------------------------------------------------------- /NBCZ.DBUtility/obj/Debug/NBCZ.DBUtility.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/obj/Debug/NBCZ.DBUtility.pdb -------------------------------------------------------------------------------- /NBCZ.DBUtility/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.DBUtility/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.DBUtility/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.DBUtility/obj/Release/NBCZ.DBUtility.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.DBUtility/obj/Release/NBCZ.DBUtility.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 903de55d4f59d8e350dc86c85ca24885a797f57a 2 | -------------------------------------------------------------------------------- /NBCZ.DBUtility/obj/Release/NBCZ.DBUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/obj/Release/NBCZ.DBUtility.dll -------------------------------------------------------------------------------- /NBCZ.DBUtility/obj/Release/NBCZ.DBUtility.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/obj/Release/NBCZ.DBUtility.pdb -------------------------------------------------------------------------------- /NBCZ.DBUtility/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.DBUtility/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.DBUtility/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.DBUtility/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.DBUtility/packages.config -------------------------------------------------------------------------------- /NBCZ.Model/NBCZ.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/NBCZ.Model.csproj -------------------------------------------------------------------------------- /NBCZ.Model/NBCZ.Model.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/NBCZ.Model.csproj.user -------------------------------------------------------------------------------- /NBCZ.Model/PageDateRep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/PageDateRep.cs -------------------------------------------------------------------------------- /NBCZ.Model/PageList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/PageList.cs -------------------------------------------------------------------------------- /NBCZ.Model/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NBCZ.Model/Pub_UserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/Pub_UserRole.cs -------------------------------------------------------------------------------- /NBCZ.Model/T4.DapperExt/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/T4.DapperExt/BaseEntity.cs -------------------------------------------------------------------------------- /NBCZ.Model/T4.DapperExt/Entity.cs: -------------------------------------------------------------------------------- 1 | ErrorGeneratingOutput -------------------------------------------------------------------------------- /NBCZ.Model/T4.DapperExt/Entity.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/T4.DapperExt/Entity.tt -------------------------------------------------------------------------------- /NBCZ.Model/T4.DapperExt/Entity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/T4.DapperExt/Entity.txt -------------------------------------------------------------------------------- /NBCZ.Model/T4.DapperExt/Pub_Department.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/T4.DapperExt/Pub_Department.cs -------------------------------------------------------------------------------- /NBCZ.Model/T4.DapperExt/Pub_Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/T4.DapperExt/Pub_Function.cs -------------------------------------------------------------------------------- /NBCZ.Model/T4.DapperExt/Pub_Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/T4.DapperExt/Pub_Role.cs -------------------------------------------------------------------------------- /NBCZ.Model/T4.DapperExt/Pub_RoleFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/T4.DapperExt/Pub_RoleFunction.cs -------------------------------------------------------------------------------- /NBCZ.Model/T4.DapperExt/Pub_User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/T4.DapperExt/Pub_User.cs -------------------------------------------------------------------------------- /NBCZ.Model/T4.DapperExt/Pub_UserFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/T4.DapperExt/Pub_UserFunction.cs -------------------------------------------------------------------------------- /NBCZ.Model/T4.DapperExt/Pub_UserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/T4.DapperExt/Pub_UserRole.cs -------------------------------------------------------------------------------- /NBCZ.Model/T4.DapperExt/V_PubUser_Dept.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/T4.DapperExt/V_PubUser_Dept.cs -------------------------------------------------------------------------------- /NBCZ.Model/V_PubUser_Dept.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/V_PubUser_Dept.cs -------------------------------------------------------------------------------- /NBCZ.Model/bin/Debug/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/bin/Debug/Dapper.dll -------------------------------------------------------------------------------- /NBCZ.Model/bin/Debug/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/bin/Debug/Dapper.xml -------------------------------------------------------------------------------- /NBCZ.Model/bin/Debug/DapperExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/bin/Debug/DapperExtensions.dll -------------------------------------------------------------------------------- /NBCZ.Model/bin/Debug/DapperExtensions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/bin/Debug/DapperExtensions.pdb -------------------------------------------------------------------------------- /NBCZ.Model/bin/Debug/NBCZ.Model.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/bin/Debug/NBCZ.Model.dll -------------------------------------------------------------------------------- /NBCZ.Model/bin/Debug/NBCZ.Model.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/bin/Debug/NBCZ.Model.pdb -------------------------------------------------------------------------------- /NBCZ.Model/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /NBCZ.Model/bin/Debug/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/bin/Debug/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /NBCZ.Model/bin/Debug/TinyMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/bin/Debug/TinyMapper.dll -------------------------------------------------------------------------------- /NBCZ.Model/bin/Release/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/bin/Release/Dapper.dll -------------------------------------------------------------------------------- /NBCZ.Model/bin/Release/Dapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/bin/Release/Dapper.xml -------------------------------------------------------------------------------- /NBCZ.Model/bin/Release/DapperExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/bin/Release/DapperExtensions.dll -------------------------------------------------------------------------------- /NBCZ.Model/bin/Release/DapperExtensions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/bin/Release/DapperExtensions.pdb -------------------------------------------------------------------------------- /NBCZ.Model/bin/Release/NBCZ.Model.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/bin/Release/NBCZ.Model.dll -------------------------------------------------------------------------------- /NBCZ.Model/bin/Release/NBCZ.Model.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/bin/Release/NBCZ.Model.pdb -------------------------------------------------------------------------------- /NBCZ.Model/bin/Release/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/bin/Release/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /NBCZ.Model/bin/Release/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/bin/Release/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /NBCZ.Model/bin/Release/TinyMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/bin/Release/TinyMapper.dll -------------------------------------------------------------------------------- /NBCZ.Model/frMenuJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/frMenuJson.cs -------------------------------------------------------------------------------- /NBCZ.Model/obj/Debug/NBCZ.Model.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Model/obj/Debug/NBCZ.Model.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/obj/Debug/NBCZ.Model.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /NBCZ.Model/obj/Debug/NBCZ.Model.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/obj/Debug/NBCZ.Model.dll -------------------------------------------------------------------------------- /NBCZ.Model/obj/Debug/NBCZ.Model.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/obj/Debug/NBCZ.Model.pdb -------------------------------------------------------------------------------- /NBCZ.Model/obj/Debug/TempPE/T4.DapperExt.Entity.txt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/obj/Debug/TempPE/T4.DapperExt.Entity.txt.dll -------------------------------------------------------------------------------- /NBCZ.Model/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Model/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Model/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Model/obj/Release/NBCZ.Model.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Model/obj/Release/NBCZ.Model.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2b0073959b9bf14ddde4cace2074a2ae98079b68 2 | -------------------------------------------------------------------------------- /NBCZ.Model/obj/Release/NBCZ.Model.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/obj/Release/NBCZ.Model.dll -------------------------------------------------------------------------------- /NBCZ.Model/obj/Release/NBCZ.Model.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/obj/Release/NBCZ.Model.pdb -------------------------------------------------------------------------------- /NBCZ.Model/obj/Release/TempPE/T4.DapperExt.Entity.txt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/obj/Release/TempPE/T4.DapperExt.Entity.txt.dll -------------------------------------------------------------------------------- /NBCZ.Model/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Model/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Model/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Model/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Model/packages.config -------------------------------------------------------------------------------- /NBCZ.Web/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/.dockerignore -------------------------------------------------------------------------------- /NBCZ.Web/App_Start/Authorization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/App_Start/Authorization.cs -------------------------------------------------------------------------------- /NBCZ.Web/App_Start/AutoMapperConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/App_Start/AutoMapperConfig.cs -------------------------------------------------------------------------------- /NBCZ.Web/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /NBCZ.Web/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /NBCZ.Web/App_Start/MyViewEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/App_Start/MyViewEngine.cs -------------------------------------------------------------------------------- /NBCZ.Web/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /NBCZ.Web/App_Start/TinyMapperConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/App_Start/TinyMapperConfig.cs -------------------------------------------------------------------------------- /NBCZ.Web/App_Start/WebException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/App_Start/WebException.cs -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/AdminAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/AdminAreaRegistration.cs -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Controllers/BaseAdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Controllers/BaseAdminController.cs -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Controllers/DepartmentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Controllers/DepartmentController.cs -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Controllers/FunctionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Controllers/FunctionController.cs -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Controllers/HomeController.cs -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Controllers/LoginController.cs -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Controllers/RoleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Controllers/RoleController.cs -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Controllers/UserController.cs -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Views/Department/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Views/Department/Add.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Views/Department/DeptTreeSelect.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Views/Department/DeptTreeSelect.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Views/Department/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Views/Department/Edit.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Views/Department/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Views/Department/Index.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Views/Function/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Views/Function/Add.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Views/Function/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Views/Function/Edit.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Views/Function/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Views/Function/Index.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Views/Login/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Views/Login/Index.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Views/Role/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Views/Role/Add.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Views/Role/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Views/Role/Edit.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Views/Role/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Views/Role/Index.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Views/Role/roleFunctionEdit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Views/Role/roleFunctionEdit.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Views/User/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Views/User/Add.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Views/User/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Views/User/Edit.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Views/User/EditPassWord.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Views/User/EditPassWord.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Views/User/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Views/User/Index.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Views/User/UserFunctionEdit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Views/User/UserFunctionEdit.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Areas/Admin/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Areas/Admin/Views/web.config -------------------------------------------------------------------------------- /NBCZ.Web/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Content/Site.css -------------------------------------------------------------------------------- /NBCZ.Web/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Content/bootstrap.css -------------------------------------------------------------------------------- /NBCZ.Web/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Content/bootstrap.min.css -------------------------------------------------------------------------------- /NBCZ.Web/Content/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Content/font-awesome.min.css -------------------------------------------------------------------------------- /NBCZ.Web/Content/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Content/login.css -------------------------------------------------------------------------------- /NBCZ.Web/Controllers/CaptchaController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Controllers/CaptchaController.cs -------------------------------------------------------------------------------- /NBCZ.Web/Controllers/EasyuiTestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Controllers/EasyuiTestController.cs -------------------------------------------------------------------------------- /NBCZ.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /NBCZ.Web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Dockerfile -------------------------------------------------------------------------------- /NBCZ.Web/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Global.asax -------------------------------------------------------------------------------- /NBCZ.Web/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Global.asax.cs -------------------------------------------------------------------------------- /NBCZ.Web/Helper/AdminUrlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Helper/AdminUrlHelper.cs -------------------------------------------------------------------------------- /NBCZ.Web/Models/AuthConst/DepartmentAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Models/AuthConst/DepartmentAuth.cs -------------------------------------------------------------------------------- /NBCZ.Web/Models/AuthConst/FunctionAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Models/AuthConst/FunctionAuth.cs -------------------------------------------------------------------------------- /NBCZ.Web/Models/AuthConst/RoleAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Models/AuthConst/RoleAuth.cs -------------------------------------------------------------------------------- /NBCZ.Web/Models/AuthConst/UserInfoAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Models/AuthConst/UserInfoAuth.cs -------------------------------------------------------------------------------- /NBCZ.Web/Models/FSMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Models/FSMapper.cs -------------------------------------------------------------------------------- /NBCZ.Web/Models/FSRep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Models/FSRep.cs -------------------------------------------------------------------------------- /NBCZ.Web/Models/FStree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Models/FStree.cs -------------------------------------------------------------------------------- /NBCZ.Web/Models/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Models/LoginViewModel.cs -------------------------------------------------------------------------------- /NBCZ.Web/NBCZ.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/NBCZ.Web.csproj -------------------------------------------------------------------------------- /NBCZ.Web/NBCZ.Web.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/NBCZ.Web.csproj.user -------------------------------------------------------------------------------- /NBCZ.Web/NBCZUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/NBCZUser.cs -------------------------------------------------------------------------------- /NBCZ.Web/NoAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/NoAuth.html -------------------------------------------------------------------------------- /NBCZ.Web/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Project_Readme.html -------------------------------------------------------------------------------- /NBCZ.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NBCZ.Web/Properties/PublishProfiles/NBCZ.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Properties/PublishProfiles/NBCZ.pubxml -------------------------------------------------------------------------------- /NBCZ.Web/Properties/PublishProfiles/NBCZ.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Properties/PublishProfiles/NBCZ.pubxml.user -------------------------------------------------------------------------------- /NBCZ.Web/Scripts/Auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Scripts/Auth.js -------------------------------------------------------------------------------- /NBCZ.Web/Scripts/FormExt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Scripts/FormExt.js -------------------------------------------------------------------------------- /NBCZ.Web/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Scripts/_references.js -------------------------------------------------------------------------------- /NBCZ.Web/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Scripts/bootstrap.js -------------------------------------------------------------------------------- /NBCZ.Web/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /NBCZ.Web/Scripts/datapattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Scripts/datapattern.js -------------------------------------------------------------------------------- /NBCZ.Web/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /NBCZ.Web/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /NBCZ.Web/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /NBCZ.Web/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /NBCZ.Web/Scripts/jquery.unobtrusive-ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Scripts/jquery.unobtrusive-ajax.js -------------------------------------------------------------------------------- /NBCZ.Web/Scripts/jquery.unobtrusive-ajax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Scripts/jquery.unobtrusive-ajax.min.js -------------------------------------------------------------------------------- /NBCZ.Web/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /NBCZ.Web/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /NBCZ.Web/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /NBCZ.Web/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /NBCZ.Web/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /NBCZ.Web/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Scripts/respond.js -------------------------------------------------------------------------------- /NBCZ.Web/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Scripts/respond.min.js -------------------------------------------------------------------------------- /NBCZ.Web/Views/EasyuiTest/Demo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Views/EasyuiTest/Demo.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Views/EasyuiTest/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Views/EasyuiTest/Index.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Views/Web.config -------------------------------------------------------------------------------- /NBCZ.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /NBCZ.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Web.Debug.config -------------------------------------------------------------------------------- /NBCZ.Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Web.Release.config -------------------------------------------------------------------------------- /NBCZ.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/Web.config -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/FormExt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/FormExt.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/README.md -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/css/reset.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/css/superBlue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/css/superBlue.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/css/superBlueDark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/css/superBlueDark.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/css/superGreen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/css/superGreen.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/css/superYellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/css/superYellow.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/demo.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/changelog.txt -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/accordion/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/accordion/ajax.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/calendar/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/calendar/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/calendar/fluid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/calendar/fluid.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/checkbox/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/checkbox/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/combo/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/combo/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/combobox/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/combobox/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/combobox/fluid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/combobox/fluid.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/combobox/group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/combobox/group.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/combobox/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/combobox/icons.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/datagrid/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/datagrid/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/datagrid/fluid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/datagrid/fluid.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/datalist/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/datalist/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/datalist/group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/datalist/group.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/datebox/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/datebox/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/datebox/clone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/datebox/clone.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/datebox/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/datebox/events.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/datebox/fluid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/datebox/fluid.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/demo.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/dialog/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/dialog/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/dialog/fluid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/dialog/fluid.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/draggable/snap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/draggable/snap.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/droppable/sort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/droppable/sort.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/filebox/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/filebox/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/filebox/fluid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/filebox/fluid.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/form/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/form/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/form/load.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/form/load.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/layout/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/layout/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/layout/complex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/layout/complex.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/layout/fluid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/layout/fluid.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/layout/full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/layout/full.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/menu/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/menu/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/menu/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/menu/events.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/menu/inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/menu/inline.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/menu/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/menu/nav.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/menubutton/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/menubutton/nav.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/messager/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/messager/alert.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/messager/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/messager/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/panel/_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/panel/_content.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/panel/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/panel/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/panel/fluid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/panel/fluid.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/panel/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/panel/footer.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/panel/halign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/panel/halign.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/sidemenu/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/sidemenu/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/sidemenu/style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/sidemenu/style.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/slider/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/slider/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/slider/fluid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/slider/fluid.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/slider/range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/slider/range.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/slider/rule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/slider/rule.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tabs/_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tabs/_content.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tabs/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tabs/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tabs/dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tabs/dropdown.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tabs/fluid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tabs/fluid.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tabs/hover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tabs/hover.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tabs/images/pda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tabs/images/pda.png -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tabs/style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tabs/style.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tabs/tabimage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tabs/tabimage.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tabs/tabstools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tabs/tabstools.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tagbox/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tagbox/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tagbox/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tagbox/button.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tagbox/format.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tagbox/format.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tagbox/style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tagbox/style.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/textbox/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/textbox/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/textbox/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/textbox/button.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/textbox/custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/textbox/custom.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/textbox/fluid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/textbox/fluid.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/textbox/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/textbox/icons.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/textbox/size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/textbox/size.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tooltip/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tooltip/ajax.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tooltip/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tooltip/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tree/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tree/actions.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tree/animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tree/animation.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tree/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tree/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tree/dnd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tree/dnd.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tree/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tree/icons.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/tree/lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/tree/lines.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/window/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/window/basic.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/demo/window/fluid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/demo/window/fluid.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/easyloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/easyloader.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/jquery.easyui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/jquery.easyui.min.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/jquery.min.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/license_freeware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/license_freeware.txt -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/plugins/jquery.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/plugins/jquery.form.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/plugins/jquery.menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/plugins/jquery.menu.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/plugins/jquery.tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/plugins/jquery.tabs.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/plugins/jquery.tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/plugins/jquery.tree.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/readme.txt -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/src/easyloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/src/easyloader.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/src/jquery.calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/src/jquery.calendar.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/src/jquery.combobox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/src/jquery.combobox.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/src/jquery.datebox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/src/jquery.datebox.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/src/jquery.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/src/jquery.form.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/src/jquery.menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/src/jquery.menu.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/src/jquery.parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/src/jquery.parser.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/src/jquery.slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/src/jquery.slider.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/src/jquery.tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/src/jquery.tabs.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/src/jquery.window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/src/jquery.window.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/angular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/angular.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/black/combo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/black/combo.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/black/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/black/menu.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/black/numberbox.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/black/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/black/panel.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/black/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/black/tabs.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/black/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/black/tree.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/bootstrap/numberbox.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/color.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/default/numberbox.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/gray/combo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/gray/combo.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/gray/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/gray/dialog.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/gray/easyui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/gray/easyui.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/gray/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/gray/layout.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/gray/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/gray/menu.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/gray/numberbox.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/gray/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/gray/panel.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/gray/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/gray/slider.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/gray/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/gray/tabs.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/gray/tagbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/gray/tagbox.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/gray/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/gray/tree.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/gray/window.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/gray/window.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/icon.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/icons/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/icons/back.png -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/icons/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/icons/blank.gif -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/icons/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/icons/clear.png -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/icons/cut.png -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/icons/help.png -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/icons/lock.png -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/icons/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/icons/man.png -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/icons/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/icons/more.png -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/icons/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/icons/no.png -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/icons/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/icons/ok.png -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/icons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/icons/print.png -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/icons/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/icons/redo.png -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/icons/sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/icons/sum.png -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/icons/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/icons/tip.png -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/icons/undo.png -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/material-teal/numberbox.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/material/numberbox.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/metro/combo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/metro/combo.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/metro/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/metro/menu.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/metro/numberbox.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/metro/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/metro/panel.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/metro/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/metro/tabs.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/metro/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/metro/tree.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/mobile.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/easyui/themes/vue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/easyui/themes/vue.css -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/example/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/example/pagination.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/gulpfile.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/img/favicon.png -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/index.html -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/js/data/datagrid_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/js/data/datagrid_data.json -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/js/data/pg_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/js/data/pg_data.json -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/js/data/tree_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/js/data/tree_data.json -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/js/data/tree_grid_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/js/data/tree_grid_data.json -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/js/super.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/js/super.js -------------------------------------------------------------------------------- /NBCZ.Web/easyui-super-theme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/easyui-super-theme/package.json -------------------------------------------------------------------------------- /NBCZ.Web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/favicon.ico -------------------------------------------------------------------------------- /NBCZ.Web/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /NBCZ.Web/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /NBCZ.Web/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /NBCZ.Web/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/404.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/ZtreeSelect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/ZtreeSelect.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/css/fs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/css/fs.css -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/css/layui-select-multiple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/css/layui-select-multiple.css -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/2017-12-20_17-29-51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/2017-12-20_17-29-51.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/2017-12-20_17-48-15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/2017-12-20_17-48-15.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/2017-12-26_10-50-53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/2017-12-26_10-50-53.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/add.png -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/datagrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/datagrid.png -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/face.jpg -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/favicon.ico -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/font/iconfont.eot -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/font/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/font/iconfont.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/font/iconfont.svg -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/font/iconfont.ttf -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/font/iconfont.woff -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/left.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/linkageDatagrid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/linkageDatagrid2.png -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/login-bg.jpg -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/login-bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/login-bg1.jpg -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/login-bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/login-bg2.jpg -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/login-bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/login-bg3.jpg -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/menu.png -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/menu_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/menu_o.png -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/multiDatagrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/multiDatagrid.png -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/right.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/temp-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/temp-bg.jpg -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/treeDatagrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/treeDatagrid.png -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/images/zhifu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/images/zhifu.png -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/index.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/echarts/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/echarts/echarts.min.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/font-awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/font-awesome/HELP-US-OUT.txt -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/font-awesome/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/font-awesome/less/animated.less -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/font-awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/font-awesome/less/core.less -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/font-awesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/font-awesome/less/icons.less -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/font-awesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/font-awesome/less/larger.less -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/font-awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/font-awesome/less/list.less -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/font-awesome/less/mixins.less -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/font-awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/font-awesome/less/path.less -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/font-awesome/less/stacked.less -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/font-awesome/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/font-awesome/less/variables.less -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/font-awesome/scss/_animated.scss -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/font-awesome/scss/_core.scss -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/font-awesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/font-awesome/scss/_icons.scss -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/font-awesome/scss/_larger.scss -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/font-awesome/scss/_list.scss -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/font-awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/font-awesome/scss/_mixins.scss -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/font-awesome/scss/_path.scss -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/font-awesome/scss/_stacked.scss -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/frame/js/frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/frame/js/frame.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/frame/js/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/frame/js/fs.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/frame/js/fsButtonCommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/frame/js/fsButtonCommon.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/frame/js/fsCommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/frame/js/fsCommon.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/frame/js/fsConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/frame/js/fsConfig.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/frame/js/fsDatagrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/frame/js/fsDatagrid.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/frame/js/fsDict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/frame/js/fsDict.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/frame/js/fsForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/frame/js/fsForm.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/frame/js/fsMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/frame/js/fsMenu.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/frame/js/fsTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/frame/js/fsTab.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/frame/js/fsTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/frame/js/fsTree.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/frame/js/fsframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/frame/js/fsframe.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/frame/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/frame/js/main.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/frame/views/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/frame/views/upload.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/jquery/jquery.min.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/css/layui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/css/layui.css -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/css/layui.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/css/layui.mobile.css -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/css/modules/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/css/modules/code.css -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/font/iconfont.eot -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/font/iconfont.svg -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/font/iconfont.woff -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/0.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/1.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/10.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/11.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/12.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/13.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/14.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/15.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/16.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/17.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/18.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/19.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/2.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/20.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/21.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/22.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/23.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/24.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/25.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/26.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/27.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/28.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/29.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/3.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/30.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/31.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/32.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/33.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/34.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/35.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/36.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/37.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/38.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/39.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/4.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/40.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/41.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/42.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/43.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/44.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/45.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/46.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/47.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/48.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/49.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/5.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/50.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/51.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/52.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/53.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/54.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/55.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/56.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/57.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/58.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/59.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/6.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/60.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/61.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/62.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/63.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/64.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/65.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/66.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/67.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/68.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/69.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/7.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/70.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/71.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/8.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/images/face/9.gif -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/lay/modules/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/lay/modules/carousel.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/lay/modules/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/lay/modules/code.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/lay/modules/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/lay/modules/element.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/lay/modules/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/lay/modules/flow.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/lay/modules/form.bak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/lay/modules/form.bak.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/lay/modules/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/lay/modules/form.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/lay/modules/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/lay/modules/jquery.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/lay/modules/laydate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/lay/modules/laydate.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/lay/modules/layedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/lay/modules/layedit.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/lay/modules/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/lay/modules/layer.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/lay/modules/laypage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/lay/modules/laypage.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/lay/modules/laytpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/lay/modules/laytpl.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/lay/modules/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/lay/modules/mobile.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/lay/modules/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/lay/modules/table.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/lay/modules/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/lay/modules/tree.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/lay/modules/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/lay/modules/upload.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/lay/modules/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/lay/modules/util.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/layui.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/layui.all.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/layui/layui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/layui/layui.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/pace/pace-theme-flash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/pace/pace-theme-flash.css -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/pace/pace.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/ztree/css/awesomeStyle/fa.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/ztree/css/awesomeStyle/fa.less -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/ztree/css/zteeSelect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/ztree/css/zteeSelect.css -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/ztree/js/jquery.ztree.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/ztree/js/jquery.ztree.all.min.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/plugins/ztree/js/ztreeSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/plugins/ztree/js/ztreeSelect.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/scripts/home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/scripts/home/index.js -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/complexDatagrid/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/complexDatagrid/add.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/complexDatagrid/addParam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/complexDatagrid/addParam.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/complexDatagrid/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/complexDatagrid/edit.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/complexDatagrid/editParam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/complexDatagrid/editParam.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/complexDatagrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/complexDatagrid/index.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/complexDatagrid/paramIndex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/complexDatagrid/paramIndex.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/datagrid/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/datagrid/add.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/datagrid/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/datagrid/edit.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/datagrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/datagrid/index.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/datagrid2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/datagrid2/index.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/datagrid2/one.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/datagrid2/one.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/home/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/home/index.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/linkageDatagrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/linkageDatagrid/index.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/linkageDatagrid2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/linkageDatagrid2/index.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/multiDatagrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/multiDatagrid/index.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/staticDatagrid/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/staticDatagrid/add.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/staticDatagrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/staticDatagrid/index.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/tabDatagrid/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/tabDatagrid/add.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/tabDatagrid/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/tabDatagrid/edit.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/tabDatagrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/tabDatagrid/index.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/treeDatagrid/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/treeDatagrid/add.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/treeDatagrid/addFunc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/treeDatagrid/addFunc.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/treeDatagrid/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/treeDatagrid/edit.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/treeDatagrid/editFunc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/treeDatagrid/editFunc.html -------------------------------------------------------------------------------- /NBCZ.Web/fsLayui/views/treeDatagrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/fsLayui/views/treeDatagrid/index.html -------------------------------------------------------------------------------- /NBCZ.Web/log/20180409.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/log/20180409.txt -------------------------------------------------------------------------------- /NBCZ.Web/log/20180409.txt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/log/20180409.txt.1 -------------------------------------------------------------------------------- /NBCZ.Web/log/20180410.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/log/20180410.txt -------------------------------------------------------------------------------- /NBCZ.Web/log/20180411.txt: -------------------------------------------------------------------------------- 1 | 2 | 2018-04-11 10:53:59,764 [55] INFO fff - aaa 3 | -------------------------------------------------------------------------------- /NBCZ.Web/log/20180412.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/log/20180412.txt -------------------------------------------------------------------------------- /NBCZ.Web/log/20180413.txt: -------------------------------------------------------------------------------- 1 | 2 | 2018-04-13 14:32:03,839 [88] INFO fff - aaa 3 | -------------------------------------------------------------------------------- /NBCZ.Web/log/20180427.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/log/20180427.txt -------------------------------------------------------------------------------- /NBCZ.Web/log/20180507.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/log/20180507.txt -------------------------------------------------------------------------------- /NBCZ.Web/log/20180510.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/log/20180510.txt -------------------------------------------------------------------------------- /NBCZ.Web/log/20180511.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/log/20180511.txt -------------------------------------------------------------------------------- /NBCZ.Web/log/20180514.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/log/20180514.txt -------------------------------------------------------------------------------- /NBCZ.Web/log/20180515.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/log/20180515.txt -------------------------------------------------------------------------------- /NBCZ.Web/log/20180516.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/log/20180516.txt -------------------------------------------------------------------------------- /NBCZ.Web/log/20190218.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/log/20190218.txt -------------------------------------------------------------------------------- /NBCZ.Web/log/20190219.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/log/20190219.txt -------------------------------------------------------------------------------- /NBCZ.Web/log/20190311.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/log/20190311.txt -------------------------------------------------------------------------------- /NBCZ.Web/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/log4net.config -------------------------------------------------------------------------------- /NBCZ.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/packages.config -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/dialogs/image/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/dialogs/image/image.css -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/dialogs/image/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/dialogs/image/image.js -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/dialogs/link/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/dialogs/link/link.js -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/dialogs/map/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/dialogs/map/map.html -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/dialogs/map/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/dialogs/map/map.js -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/dialogs/video/video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/dialogs/video/video.css -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/dialogs/video/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/dialogs/video/video.js -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/index.html -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/lang/en/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/lang/en/en.js -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/lang/en/images/button.png -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/lang/en/images/copy.png -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/lang/en/images/music.png -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/lang/en/images/upload.png -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/lang/zh-cn/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/lang/zh-cn/zh-cn.js -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/net/Uploader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/net/Uploader.cs -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/net/getContent.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/net/getContent.ashx -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/net/imageUp.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/net/imageUp.ashx -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/third-party/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/third-party/jquery.min.js -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/umeditor.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/umeditor.config.js -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/umeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/umeditor.js -------------------------------------------------------------------------------- /NBCZ.Web/umeditor1_2_2-utf8-net/umeditor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.Web/umeditor1_2_2-utf8-net/umeditor.min.js -------------------------------------------------------------------------------- /NBCZ.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.sln -------------------------------------------------------------------------------- /NBCZ.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/NBCZ.v12.suo -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/SECURITY.md -------------------------------------------------------------------------------- /db/NBCZ20180517.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/db/NBCZ20180517.bak -------------------------------------------------------------------------------- /tg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/tg.jpg -------------------------------------------------------------------------------- /zs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/zs.jpg -------------------------------------------------------------------------------- /zswx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/zswx.jpg -------------------------------------------------------------------------------- /zszfb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/zszfb.jpg -------------------------------------------------------------------------------- /说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi8708/NBCZ_Admin/HEAD/说明.txt --------------------------------------------------------------------------------