实例介绍
强大的前台结合mvc框架完美实现web模板,适用于中小企业开发,数据库可以采用MySQL或SQLserver,数据库自动生成,无需用户操作,内置优秀文档详细的配置流程
【实例截图】
【核心代码】
wisex-master
└── wisex-master
├── QiGuanBaoCustomerEntities
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── QiGuanBao.cs
│ └── QiGuanBaoCustomerEntities.csproj
├── README.md
├── Wisex
│ ├── App_Start
│ │ ├── BundleConfig.cs
│ │ ├── Filter
│ │ │ ├── AuthFilter.cs
│ │ │ └── CommonExceptionFilter.cs
│ │ ├── FilterConfig.cs
│ │ ├── IdentityConfig.cs
│ │ ├── RouteConfig.cs
│ │ └── Startup.Auth.cs
│ ├── Areas
│ │ └── Admin
│ │ ├── AdminAreaRegistration.cs
│ │ ├── Controllers
│ │ │ ├── AdminBaseController.cs
│ │ │ ├── ControlController.cs
│ │ │ ├── CustomizeFunc
│ │ │ │ └── CustomizeController.cs
│ │ │ ├── DemoController.cs
│ │ │ ├── EmailController.cs
│ │ │ ├── LoginlogController.cs
│ │ │ ├── MenuController.cs
│ │ │ ├── MessageController.cs
│ │ │ ├── PageViewController.cs
│ │ │ ├── RoleController.cs
│ │ │ ├── TableMgrController.cs
│ │ │ └── UserController.cs
│ │ └── Views
│ │ ├── Control
│ │ │ ├── Index.cshtml
│ │ │ └── Welcome.cshtml
│ │ ├── Customize
│ │ │ └── Index.cshtml
│ │ ├── Demo
│ │ │ ├── Advance.cshtml
│ │ │ ├── Base.cshtml
│ │ │ ├── Chart.cshtml
│ │ │ ├── ChartJs.cshtml
│ │ │ ├── ChartMorris.cshtml
│ │ │ ├── DataTableAdv.cshtml
│ │ │ ├── DataTable.cshtml
│ │ │ ├── Editor.cshtml
│ │ │ ├── Fontawosome.cshtml
│ │ │ ├── Form.cshtml
│ │ │ ├── FormValidate.cshtml
│ │ │ ├── Gallery.cshtml
│ │ │ ├── InBoxCompose.cshtml
│ │ │ ├── InBox.cshtml
│ │ │ ├── InBoxDetail.cshtml
│ │ │ └── Profile.cshtml
│ │ │ ├── Add.cshtml
│ │ │ └── Index.cshtml
│ │ ├── Loginlog
│ │ │ └── Index.cshtml
│ │ ├── Menu
│ │ │ ├── Add.cshtml
│ │ │ ├── Edit.cshtml
│ │ │ └── Index.cshtml
│ │ ├── Message
│ │ │ └── Index.cshtml
│ │ ├── PageView
│ │ │ └── Index.cshtml
│ │ ├── Role
│ │ │ ├── Add.cshtml
│ │ │ ├── AuthMenus.cshtml
│ │ │ ├── Edit.cshtml
│ │ │ └── Index.cshtml
│ │ ├── Shared
│ │ │ ├── BaiduTongji.cshtml
│ │ │ ├── _Layout_Body.cshtml
│ │ │ └── _Layout.cshtml
│ │ ├── TableMgr
│ │ │ ├── Add.cshtml
│ │ │ ├── Edit.cshtml
│ │ │ └── Index.cshtml
│ │ ├── User
│ │ │ ├── Add.cshtml
│ │ │ ├── Authen.cshtml
│ │ │ ├── Edit.cshtml
│ │ │ ├── ForgotPwd.cshtml
│ │ │ ├── Index.cshtml
│ │ │ ├── Login.cshtml
│ │ │ └── Reg.cshtml
│ │ ├── _ViewStart.cshtml
│ │ └── web.config
│ ├── Config
│ │ ├── log4net_Sqlserver.config
│ │ ├── SqlMappers
│ │ │ ├── Account.xml
│ │ │ ├── CustomizeFunc.xml
│ │ │ ├── PageView.xml
│ │ │ └── SyetemControl.xml
│ │ └── StructureMap
│ │ ├── Business.config
│ │ └── DataAccess.config
│ ├── Content
│ │ ├── bootstrap.css
│ │ ├── bootstrap.min.css
│ │ ├── 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
│ │ │ ├── line_conn.png
│ │ │ ├── loading.gif
│ │ │ ├── metro.gif
│ │ │ ├── metro.png
│ │ │ ├── zTreeStandard.gif
│ │ │ └── zTreeStandard.png
│ │ ├── Site.css
│ │ ├── zTree.css
│ │ ├── zTree.min.css
│ │ ├── zTree.theme.metro.css
│ │ └── zTree.theme.metro.min.css
│ ├── Controllers
│ │ ├── AccountController.cs
│ │ ├── HomeController.cs
│ │ ├── ManageController.cs
│ │ └── MsgController.cs
│ ├── favicon.ico
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
│ ├── Global.asax
│ ├── Global.asax.cs
│ ├── job_scheduling_data_2_0.xsd
│ ├── Models
│ │ ├── AccountViewModels.cs
│ │ ├── AuthMenuDto.cs
│ │ ├── IdentityModels.cs
│ │ └── ManageViewModels.cs
│ ├── packages.config
│ ├── Project_Readme.html
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── providers.config
│ ├── Scripts
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.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.signalR-2.2.0.js
│ │ ├── jquery.validate.js
│ │ ├── jquery.validate.min.js
│ │ ├── jquery.validate.unobtrusive.js
│ │ ├── jquery.validate.unobtrusive.min.js
│ │ ├── jquery.validate-vsdoc.js
│ │ ├── jquery.ztree.all-3.5.js
│ │ ├── jquery.ztree.all-3.5.min.js
│ │ ├── jquery.ztree.dropdown.js
│ │ ├── modernizr-2.6.2.js
│ │ ├── _references.js
│ │ ├── respond.js
│ │ └── respond.min.js
│ ├── SignalrCore
│ │ └── ChatHub.cs
│ ├── SqlMap.config
│ ├── Startup.cs
│ ├── Template
│ │ ├── backend
│ │ │ ├── css
│ │ │ │ ├── Abel.css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── bootstrap-reset.css
│ │ │ │ ├── bootstrap-touchspin.css
│ │ │ │ ├── default-theme.css
│ │ │ │ ├── dropzone.css
│ │ │ │ ├── font-awesome.css
│ │ │ │ ├── icomoon-weather.css
│ │ │ │ ├── jquery.steps.css
│ │ │ │ ├── jquery-ui-1.10.3.css
│ │ │ │ ├── layout-theme-one.css
│ │ │ │ ├── layout-theme-three.css
│ │ │ │ ├── layout-theme-two.css
│ │ │ │ ├── owl.carousel.css
│ │ │ │ ├── select2-bootstrap.css
│ │ │ │ ├── select2.css
│ │ │ │ ├── simple-line-icons.css
│ │ │ │ ├── slidebars.css
│ │ │ │ ├── SourceSansPro.css
│ │ │ │ ├── style.css
│ │ │ │ ├── style-responsive.css
│ │ │ │ └── tagsinput.css
│ │ │ ├── fonts
│ │ │ │ ├── brdGGFwqYJxjg2CD1E9o7g.woff2
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ ├── fontawesome-webfont.woff2
│ │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6CibMF1hxOLo1b4zdIEBvuw.woff2
│ │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6CzM2XYAq8cDhaXsrN8WXcA.woff2
│ │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6Dx8cL9zsYYyxVMwatU85cQ.woff2
│ │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6E78GtRp3lhchupCJNw8t58.woff2
│ │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6GLvoADUPo08d8_TfMCzMpg.woff2
│ │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6GQKuzMuncr0JB710wa2dPI.woff2
│ │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6H1Ah8-D2WXjE_RNgU-I6-c.woff2
│ │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6J-EY3txTwhUdSs_eHhDaJM.woff2
│ │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6Kixy-5gtMP3-zP8S1pobIg.woff2
│ │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6Kr3NmSntz3GE6rIpxOPZGY.woff2
│ │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6Lpx497t94oDua8KfAL9f-E.woff2
│ │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6MAjkyiewWYrWZc50I8hK7I.woff2
│ │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6Nnl6YROR5rHLkdLoHwoOWA.woff2
│ │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6OXKTZYPNtG1yMB_YJSqlic.woff2
│ │ │ │ ├── fpTVHK8qsXbIeTHTrnQH6PCsapai9JN_dpv7KtlunNg.woff2
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ ├── glyphicons-halflings-regular.woff2
│ │ │ │ ├── icomoon.eot
│ │ │ │ ├── M2Jd71oPJhLKp0zdtTvoM40tgx99jmYGv_xzYuwd1rU.woff2
│ │ │ │ ├── M2Jd71oPJhLKp0zdtTvoM7YHq4FgHI02B8rPccK0FJQ.woff2
│ │ │ │ ├── M2Jd71oPJhLKp0zdtTvoMxgy2Fsj5sj3EzlXpqVXRKo.woff2
│ │ │ │ ├── ODelI1aHBYDBqgeIAH2zlC2Q8seG17bfDXYR_jUsrzg.woff2
│ │ │ │ ├── ODelI1aHBYDBqgeIAH2zlNOAHFN6BivSraYkjhveRHY.woff2
│ │ │ │ ├── ODelI1aHBYDBqgeIAH2zlNV_2ngZ8dMf8fLgjYEouxg.woff2
│ │ │ │ ├── Simple-Line-Icons.eot
│ │ │ │ ├── Simple-Line-Icons.svg
│ │ │ │ ├── Simple-Line-Icons.ttf
│ │ │ │ ├── Simple-Line-Icons.woff
│ │ │ │ ├── toadOcfmlt9b38dHJxOBGAIasgMoEcVHo3r268QTaWo.woff2
│ │ │ │ ├── toadOcfmlt9b38dHJxOBGClYwVOhDRq2vbpGRTZ7bbs.woff2
│ │ │ │ ├── toadOcfmlt9b38dHJxOBGCOFnW3Jk0f09zW_Yln67Ac.woff2
│ │ │ │ ├── toadOcfmlt9b38dHJxOBGCVh0V6fR69OLaFLklYbiSk.woff2
│ │ │ │ ├── toadOcfmlt9b38dHJxOBGD_j0nMiB9fPhg_k1wdK2h0.woff2
│ │ │ │ ├── toadOcfmlt9b38dHJxOBGDovqjS_dXPZszO_XltPdNg.woff2
│ │ │ │ ├── toadOcfmlt9b38dHJxOBGDRVvBvQIc1z78c__uoBcyI.woff2
│ │ │ │ ├── toadOcfmlt9b38dHJxOBGEfh7q1GW6w7vv_rRnRqMrY.woff2
│ │ │ │ ├── toadOcfmlt9b38dHJxOBGEo0As1BFRXtCDhS66znb_k.woff2
│ │ │ │ ├── toadOcfmlt9b38dHJxOBGFKFh1TDTPrUZWzVp6FtpG8.woff2
│ │ │ │ ├── toadOcfmlt9b38dHJxOBGFxe-GPfKKFmiXaJ_Q0GFr8.woff2
│ │ │ │ ├── toadOcfmlt9b38dHJxOBGHZhYM0_6AejPZE-OqA592o.woff2
│ │ │ │ ├── toadOcfmlt9b38dHJxOBGJCDkYQxybH_Rl7Qv7ee2N4.woff2
│ │ │ │ ├── toadOcfmlt9b38dHJxOBGLpVETArfVi9McBbsQ4atuQ.woff2
│ │ │ │ └── toadOcfmlt9b38dHJxOBGOode0-EuMkY--TSyExeINg.woff2
│ │ │ ├── img
│ │ │ │ ├── 404.png
│ │ │ │ ├── 500.png
│ │ │ │ ├── avatar-mini.jpg
│ │ │ │ ├── details_close.png
│ │ │ │ ├── details_open.png
│ │ │ │ ├── flags
│ │ │ │ │ ├── french_flag.jpg
│ │ │ │ │ ├── germany_flag.jpg
│ │ │ │ │ ├── italy_flag.jpg
│ │ │ │ │ ├── russia_flag.jpg
│ │ │ │ │ └── spain_flag.jpg
│ │ │ │ ├── gallery
│ │ │ │ │ ├── 1.jpg
│ │ │ │ │ ├── 2.jpg
│ │ │ │ │ ├── 3.jpg
│ │ │ │ │ ├── 4.jpg
│ │ │ │ │ ├── 5.jpg
│ │ │ │ │ └── 6.jpg
│ │ │ │ ├── ico
│ │ │ │ │ └── favicon.png
│ │ │ │ ├── img1.jpg
│ │ │ │ ├── img2.jpg
│ │ │ │ ├── img3.jpg
│ │ │ │ ├── img4.jpg
│ │ │ │ ├── img-attachment.jpg
│ │ │ │ ├── invoice-logo.png
│ │ │ │ ├── k-img.jpg
│ │ │ │ ├── layout
│ │ │ │ │ ├── default-layout.jpg
│ │ │ │ │ ├── layout1.jpg
│ │ │ │ │ ├── layout2.jpg
│ │ │ │ │ ├── layout3.jpg
│ │ │ │ │ ├── layout4.jpg
│ │ │ │ │ ├── non_sticky.jpg
│ │ │ │ │ └── sticky-sidebar.jpg
│ │ │ │ ├── left-arrow.png
│ │ │ │ ├── loading-background.png
│ │ │ │ ├── lockscreen_user.jpg
│ │ │ │ ├── login_logo.png
│ │ │ │ ├── logo-icon.png
│ │ │ │ ├── mega-menu
│ │ │ │ │ ├── corner_image.jpg
│ │ │ │ │ ├── mega_icon1.png
│ │ │ │ │ ├── mega_icon2.png
│ │ │ │ │ ├── mega_icon3.png
│ │ │ │ │ └── mega_icon4.png
│ │ │ │ ├── news_image.jpg
│ │ │ │ ├── pdf-attachment.jpg
│ │ │ │ ├── p-img-1.jpg
│ │ │ │ ├── p-img-2.jpg
│ │ │ │ ├── p-img-3.jpg
│ │ │ │ ├── profile-banner.jpg
│ │ │ │ ├── qr-pay.jpg
│ │ │ │ ├── right-arrow.png
│ │ │ │ ├── select2.png
│ │ │ │ ├── select2-spinner.gif
│ │ │ │ ├── select2x2.png
│ │ │ │ ├── sort_asc_disabled.png
│ │ │ │ ├── sort_asc.png
│ │ │ │ ├── sort_both.png
│ │ │ │ ├── sort_desc_disabled.png
│ │ │ │ ├── sort_desc.png
│ │ │ │ ├── spinner.gif
│ │ │ │ ├── timeline
│ │ │ │ │ └── img-1.jpg
│ │ │ │ ├── weather-1.jpg
│ │ │ │ ├── weather_background.jpg
│ │ │ │ └── w-p-img.jpg
│ │ │ ├── js
│ │ │ │ ├── bootstrap-colorpicker
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── colorpicker.css
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── alpha.png
│ │ │ │ │ │ ├── hue.png
│ │ │ │ │ │ └── saturation.png
│ │ │ │ │ └── js
│ │ │ │ │ └── bootstrap-colorpicker.js
│ │ │ │ ├── bootstrap-datepicker
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── datepicker.css
│ │ │ │ │ └── js
│ │ │ │ │ └── bootstrap-datepicker.js
│ │ │ │ ├── bootstrap-daterangepicker
│ │ │ │ │ ├── daterangepicker-bs3.css
│ │ │ │ │ ├── daterangepicker.js
│ │ │ │ │ └── moment.min.js
│ │ │ │ ├── bootstrap-datetimepicker
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── datetimepicker.css
│ │ │ │ │ └── js
│ │ │ │ │ └── bootstrap-datetimepicker.js
│ │ │ │ ├── bootstrap-fileinput-master
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── fileinput.css
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ └── loading-sm.gif
│ │ │ │ │ └── js
│ │ │ │ │ └── fileinput.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── bootstrap-timepicker
│ │ │ │ │ ├── compiled
│ │ │ │ │ │ └── timepicker.css
│ │ │ │ │ └── js
│ │ │ │ │ └── bootstrap-timepicker.js
│ │ │ │ ├── bootstrap-validator.min.js
│ │ │ │ ├── bootstrap-wysihtml5
│ │ │ │ │ ├── bootstrap-wysihtml5.css
│ │ │ │ │ ├── bootstrap-wysihtml5.js
│ │ │ │ │ └── wysihtml5-0.3.0.js
│ │ │ │ ├── chart-js
│ │ │ │ │ └── chart.js
│ │ │ │ ├── chartJs-init.js
│ │ │ │ ├── dashboard-vmap-init.js
│ │ │ │ ├── data-table
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── dataTables.colVis.min.css
│ │ │ │ │ │ ├── dataTables.responsive.css
│ │ │ │ │ │ ├── dataTables.scroller.css
│ │ │ │ │ │ ├── dataTables.tableTools.css
│ │ │ │ │ │ └── jquery.dataTables.css
│ │ │ │ │ └── js
│ │ │ │ │ ├── bootstrap-dataTable.js
│ │ │ │ │ ├── dataTables.colVis.min.js
│ │ │ │ │ ├── dataTables.responsive.min.js
│ │ │ │ │ ├── dataTables.scroller.min.js
│ │ │ │ │ ├── dataTables.tableTools.min.js
│ │ │ │ │ └── jquery.dataTables.min.js
│ │ │ │ ├── data-table-init.js
│ │ │ │ ├── dragging-calendar-event-init.js
│ │ │ │ ├── dropzone.js
│ │ │ │ ├── earning-chart-init.js
│ │ │ │ ├── easy-pie-chart.js
│ │ │ │ ├── file-input-init.js
│ │ │ │ ├── flot-chart
│ │ │ │ │ ├── flot-spline.js
│ │ │ │ │ ├── jquery.flot.crosshair.js
│ │ │ │ │ ├── jquery.flot.js
│ │ │ │ │ ├── jquery.flot.pie.js
│ │ │ │ │ ├── jquery.flot.resize.js
│ │ │ │ │ ├── jquery.flot.selection.js
│ │ │ │ │ ├── jquery.flot.stack.js
│ │ │ │ │ └── jquery.flot.tooltip.min.js
│ │ │ │ ├── flot-chart-init.js
│ │ │ │ ├── form-validation-init.js
│ │ │ │ ├── fuelux
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── tree-style.css
│ │ │ │ │ ├── img
│ │ │ │ │ │ └── tree-icons.png
│ │ │ │ │ └── js
│ │ │ │ │ └── tree.min.js
│ │ │ │ ├── fullcalendar
│ │ │ │ │ ├── bootstrap-fullcalendar.css
│ │ │ │ │ └── fullcalendar.min.js
│ │ │ │ ├── gmaps-init.js
│ │ │ │ ├── gmaps.js
│ │ │ │ ├── gritter
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── jquery.gritter.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── gritter-light.png
│ │ │ │ │ │ ├── gritter.png
│ │ │ │ │ │ └── ie-spacer.gif
│ │ │ │ │ └── js
│ │ │ │ │ └── jquery.gritter.js
│ │ │ │ ├── gritter.js
│ │ │ │ ├── icheck
│ │ │ │ │ └── skins
│ │ │ │ │ ├── all.css
│ │ │ │ │ ├── flat
│ │ │ │ │ │ ├── aero@2x.png
│ │ │ │ │ │ ├── aero.png
│ │ │ │ │ │ ├── _all.css
│ │ │ │ │ │ ├── blue@2x.png
│ │ │ │ │ │ ├── blue.png
│ │ │ │ │ │ ├── flat@2x.png
│ │ │ │ │ │ ├── flat.png
│ │ │ │ │ │ ├── green@2x.png
│ │ │ │ │ │ ├── green.png
│ │ │ │ │ │ ├── grey@2x.png
│ │ │ │ │ │ ├── grey.png
│ │ │ │ │ │ ├── orange@2x.png
│ │ │ │ │ │ ├── orange.png
│ │ │ │ │ │ ├── pink@2x.png
│ │ │ │ │ │ ├── pink.png
│ │ │ │ │ │ ├── purple@2x.png
│ │ │ │ │ │ ├── purple.png
│ │ │ │ │ │ ├── red@2x.png
│ │ │ │ │ │ ├── red.png
│ │ │ │ │ │ ├── yellow@2x.png
│ │ │ │ │ │ └── yellow.png
│ │ │ │ │ ├── futurico
│ │ │ │ │ │ ├── futurico@2x.png
│ │ │ │ │ │ ├── futurico.css
│ │ │ │ │ │ └── futurico.png
│ │ │ │ │ ├── icheck.min.js
│ │ │ │ │ ├── line
│ │ │ │ │ │ ├── _all.css
│ │ │ │ │ │ ├── line@2x.png
│ │ │ │ │ │ └── line.png
│ │ │ │ │ ├── minimal
│ │ │ │ │ │ ├── aero@2x.png
│ │ │ │ │ │ ├── aero.png
│ │ │ │ │ │ ├── _all.css
│ │ │ │ │ │ ├── blue@2x.png
│ │ │ │ │ │ ├── blue.png
│ │ │ │ │ │ ├── green@2x.png
│ │ │ │ │ │ ├── green.png
│ │ │ │ │ │ ├── grey@2x.png
│ │ │ │ │ │ ├── grey.png
│ │ │ │ │ │ ├── minimal@2x.png
│ │ │ │ │ │ ├── minimal.png
│ │ │ │ │ │ ├── orange@2x.png
│ │ │ │ │ │ ├── orange.png
│ │ │ │ │ │ ├── pink@2x.png
│ │ │ │ │ │ ├── pink.png
│ │ │ │ │ │ ├── purple@2x.png
│ │ │ │ │ │ ├── purple.png
│ │ │ │ │ │ ├── red@2x.png
│ │ │ │ │ │ ├── red.png
│ │ │ │ │ │ ├── yellow@2x.png
│ │ │ │ │ │ └── yellow.png
│ │ │ │ │ ├── polaris
│ │ │ │ │ │ ├── polaris@2x.png
│ │ │ │ │ │ ├── polaris.css
│ │ │ │ │ │ └── polaris.png
│ │ │ │ │ └── square
│ │ │ │ │ ├── aero@2x.png
│ │ │ │ │ ├── aero.png
│ │ │ │ │ ├── _all.css
│ │ │ │ │ ├── blue@2x.png
│ │ │ │ │ ├── blue.png
│ │ │ │ │ ├── green@2x.png
│ │ │ │ │ ├── green.png
│ │ │ │ │ ├── grey@2x.png
│ │ │ │ │ ├── grey.png
│ │ │ │ │ ├── orange@2x.png
│ │ │ │ │ ├── orange.png
│ │ │ │ │ ├── pink@2x.png
│ │ │ │ │ ├── pink.png
│ │ │ │ │ ├── purple@2x.png
│ │ │ │ │ ├── purple.png
│ │ │ │ │ ├── red@2x.png
│ │ │ │ │ ├── red.png
│ │ │ │ │ ├── square@2x.png
│ │ │ │ │ ├── square.png
│ │ │ │ │ ├── yellow@2x.png
│ │ │ │ │ └── yellow.png
│ │ │ │ ├── icheck-init.js
│ │ │ │ ├── ion-rangeSlider
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── ion-custom-slicklab.css
│ │ │ │ │ │ └── ion.rangeSlider.css
│ │ │ │ │ └── js
│ │ │ │ │ └── ion.rangeSlider.js
│ │ │ │ ├── ion-slider-init.js
│ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ ├── jquery-1.11.1.min.js
│ │ │ │ ├── jquery-countTo
│ │ │ │ │ └── jquery.countTo.js
│ │ │ │ ├── jquery-easy-pie-chart
│ │ │ │ │ ├── jquery.easy-pie-chart.css
│ │ │ │ │ └── jquery.easy-pie-chart.js
│ │ │ │ ├── jquery-migrate.js
│ │ │ │ ├── jquery.nicescroll.js
│ │ │ │ ├── jquery.pulsate.min.js
│ │ │ │ ├── jquery.steps.min.js
│ │ │ │ ├── jquery-ui
│ │ │ │ │ ├── jquery-ui-1.10.1.custom.min.css
│ │ │ │ │ └── jquery-ui-1.10.1.custom.min.js
│ │ │ │ ├── jquery.ui.touch-punch.min.js
│ │ │ │ ├── jquery.validate.min.js
│ │ │ │ ├── json2.js
│ │ │ │ ├── layer
│ │ │ │ │ ├── extend
│ │ │ │ │ │ └── layer.ext.js
│ │ │ │ │ ├── layer.js
│ │ │ │ │ └── skin
│ │ │ │ │ ├── default
│ │ │ │ │ │ ├── icon-ext.png
│ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ ├── loading-0.gif
│ │ │ │ │ │ ├── loading-1.gif
│ │ │ │ │ │ └── loading-2.gif
│ │ │ │ │ ├── layer.css
│ │ │ │ │ └── layer.ext.css
│ │ │ │ ├── modernizr.min.js
│ │ │ │ ├── morris-chart
│ │ │ │ │ ├── morris.css
│ │ │ │ │ ├── morris.js
│ │ │ │ │ └── raphael-min.js
│ │ │ │ ├── morris-init.js
│ │ │ │ ├── nestable
│ │ │ │ │ ├── jquery.nestable.css
│ │ │ │ │ └── jquery.nestable.js
│ │ │ │ ├── nestable-init.js
│ │ │ │ ├── owl.carousel.js
│ │ │ │ ├── picker-init.js
│ │ │ │ ├── pulstate.js
│ │ │ │ ├── scripts.js
│ │ │ │ ├── select2-init.js
│ │ │ │ ├── select2.js
│ │ │ │ ├── slidebars.min.js
│ │ │ │ ├── sparkline
│ │ │ │ │ ├── jquery.sparkline.js
│ │ │ │ │ └── sparkline-init.js
│ │ │ │ ├── spinner-init.js
│ │ │ │ ├── summernote
│ │ │ │ │ └── dist
│ │ │ │ │ ├── summernote.css
│ │ │ │ │ └── summernote.min.js
│ │ │ │ ├── switchery
│ │ │ │ │ ├── switchery-init.js
│ │ │ │ │ ├── switchery.min.css
│ │ │ │ │ └── switchery.min.js
│ │ │ │ ├── tags-input-init.js
│ │ │ │ ├── tags-input.js
│ │ │ │ ├── toastr-init.js
│ │ │ │ ├── toastr-master
│ │ │ │ │ ├── toastr.css
│ │ │ │ │ └── toastr.js
│ │ │ │ ├── todo-init.js
│ │ │ │ ├── touchspin.js
│ │ │ │ ├── tree-init.js
│ │ │ │ ├── vector-map
│ │ │ │ │ ├── jquery-jvectormap-1.1.1.css
│ │ │ │ │ ├── jquery-jvectormap-1.2.2.min.js
│ │ │ │ │ ├── jquery-jvectormap-world-mill-en.js
│ │ │ │ │ └── jqvmap
│ │ │ │ │ ├── data
│ │ │ │ │ │ └── jquery.vmap.sampledata.js
│ │ │ │ │ ├── jquery.vmap.js
│ │ │ │ │ ├── jqvmap.css
│ │ │ │ │ └── maps
│ │ │ │ │ ├── continents
│ │ │ │ │ │ ├── jquery.vmap.asia.js
│ │ │ │ │ │ ├── jquery.vmap.australia.js
│ │ │ │ │ │ └── jquery.vmap.europe.js
│ │ │ │ │ └── jquery.vmap.world.js
│ │ │ │ ├── vmap-init.js
│ │ │ │ ├── wisex.js
│ │ │ │ ├── wisex.login.valid.js
│ │ │ │ ├── wisex.menu.js
│ │ │ │ ├── wisex.select.js
│ │ │ │ ├── wisex.tables.js
│ │ │ │ └── wizard-init.js
│ │ │ └── swf
│ │ │ ├── copy_csv_xls_pdf.swf
│ │ │ └── copy_csv_xls.swf
│ │ └── front
│ │ ├── adm.css
│ │ ├── onepage.css
│ │ └── web
│ │ ├── css
│ │ │ ├── animate.min.css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── font-awesome.css
│ │ │ ├── font-awesome.min.css
│ │ │ ├── main.css
│ │ │ ├── prettyPhoto.css
│ │ │ └── responsive.css
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ └── glyphicons-halflings-regular.woff
│ │ ├── images
│ │ │ ├── 404.xcf
│ │ │ ├── accordion1.png
│ │ │ ├── contact.png
│ │ │ ├── ico
│ │ │ │ ├── apple-touch-icon-114-precomposed.png
│ │ │ │ ├── apple-touch-icon-144-precomposed.png
│ │ │ │ ├── apple-touch-icon-57-precomposed.png
│ │ │ │ ├── apple-touch-icon-72-precomposed.png
│ │ │ │ └── favicon.ico
│ │ │ ├── image_bg.png
│ │ │ ├── logo.png
│ │ │ ├── portfolio
│ │ │ │ ├── full
│ │ │ │ │ ├── item10.png
│ │ │ │ │ ├── item11.png
│ │ │ │ │ ├── item12.png
│ │ │ │ │ ├── item1.png
│ │ │ │ │ ├── item2.png
│ │ │ │ │ ├── item3.png
│ │ │ │ │ ├── item4.png
│ │ │ │ │ ├── item5.png
│ │ │ │ │ ├── item6.png
│ │ │ │ │ ├── item7.png
│ │ │ │ │ ├── item8.png
│ │ │ │ │ └── item9.png
│ │ │ │ └── recent
│ │ │ │ ├── item10.png
│ │ │ │ ├── item11.png
│ │ │ │ ├── item12.png
│ │ │ │ ├── item1.png
│ │ │ │ ├── item2.png
│ │ │ │ ├── item3.png
│ │ │ │ ├── item4.png
│ │ │ │ ├── item5.png
│ │ │ │ ├── item6.png
│ │ │ │ ├── item7.png
│ │ │ │ ├── item8.png
│ │ │ │ └── item9.png
│ │ │ ├── prettyPhoto
│ │ │ │ ├── dark_rounded
│ │ │ │ │ ├── btnNext.png
│ │ │ │ │ ├── btnPrevious.png
│ │ │ │ │ ├── contentPattern.png
│ │ │ │ │ ├── default_thumbnail.gif
│ │ │ │ │ ├── loader.gif
│ │ │ │ │ └── sprite.png
│ │ │ │ ├── dark_square
│ │ │ │ │ ├── btnNext.png
│ │ │ │ │ ├── btnPrevious.png
│ │ │ │ │ ├── contentPattern.png
│ │ │ │ │ ├── default_thumbnail.gif
│ │ │ │ │ ├── loader.gif
│ │ │ │ │ └── sprite.png
│ │ │ │ ├── default
│ │ │ │ │ ├── default_thumb.png
│ │ │ │ │ ├── loader.gif
│ │ │ │ │ ├── sprite_next.png
│ │ │ │ │ ├── sprite.png
│ │ │ │ │ ├── sprite_prev.png
│ │ │ │ │ ├── sprite_x.png
│ │ │ │ │ └── sprite_y.png
│ │ │ │ │ ├── btnNext.png
│ │ │ │ │ ├── btnPrevious.png
│ │ │ │ │ ├── contentPatternBottom.png
│ │ │ │ │ ├── contentPatternLeft.png
│ │ │ │ │ ├── contentPatternRight.png
│ │ │ │ │ ├── contentPatternTop.png
│ │ │ │ │ ├── default_thumbnail.gif
│ │ │ │ │ ├── loader.gif
│ │ │ │ │ └── sprite.png
│ │ │ │ ├── light_rounded
│ │ │ │ │ ├── btnNext.png
│ │ │ │ │ ├── btnPrevious.png
│ │ │ │ │ ├── default_thumbnail.gif
│ │ │ │ │ ├── loader.gif
│ │ │ │ │ └── sprite.png
│ │ │ │ └── light_square
│ │ │ │ ├── btnNext.png
│ │ │ │ ├── btnPrevious.png
│ │ │ │ ├── default_thumbnail.gif
│ │ │ │ ├── loader.gif
│ │ │ │ └── sprite.png
│ │ │ └── slider
│ │ │ ├── bg1.jpg
│ │ │ ├── bg2.jpg
│ │ │ ├── bg3.jpg
│ │ │ └── img3.png
│ │ └── js
│ │ ├── bootstrap.min.js
│ │ ├── html5shiv.js
│ │ ├── jquery.isotope.min.js
│ │ ├── jquery.js
│ │ ├── jquery.prettyPhoto.js
│ │ ├── main.js
│ │ ├── respond.min.js
│ │ └── wow.min.js
│ ├── Views
│ │ ├── Account
│ │ │ ├── ConfirmEmail.cshtml
│ │ │ ├── ExternalLoginConfirmation.cshtml
│ │ │ ├── ExternalLoginFailure.cshtml
│ │ │ ├── _ExternalLoginsListPartial.cshtml
│ │ │ ├── ForgotPasswordConfirmation.cshtml
│ │ │ ├── ForgotPassword.cshtml
│ │ │ ├── Login.cshtml
│ │ │ ├── Register.cshtml
│ │ │ ├── ResetPasswordConfirmation.cshtml
│ │ │ ├── ResetPassword.cshtml
│ │ │ ├── SendCode.cshtml
│ │ │ └── VerifyCode.cshtml
│ │ ├── Home
│ │ │ ├── About.cshtml
│ │ │ ├── Contact.cshtml
│ │ │ └── Index.cshtml
│ │ ├── Manage
│ │ │ ├── AddPhoneNumber.cshtml
│ │ │ ├── ChangePassword.cshtml
│ │ │ ├── Index.cshtml
│ │ │ ├── ManageLogins.cshtml
│ │ │ ├── SetPassword.cshtml
│ │ │ └── VerifyPhoneNumber.cshtml
│ │ ├── Msg
│ │ │ ├── ReceiveMessage.cshtml
│ │ │ └── SendMessage.cshtml
│ │ ├── Shared
│ │ │ ├── Error.cshtml
│ │ │ ├── _Layout.cshtml
│ │ │ ├── Lockout.cshtml
│ │ │ └── _LoginPartial.cshtml
│ │ ├── _ViewStart.cshtml
│ │ └── Web.config
│ ├── Web.config
│ ├── Web.Debug.config
│ ├── Web.Release.config
│ └── Wisex.csproj
├── Wisex.Common
│ ├── Attributes
│ │ ├── AttributeUtils.cs
│ │ ├── LikeQueryAttribute.cs
│ │ └── TableMappingAttribute.cs
│ ├── Class1.cs
│ ├── DataTypeMgr
│ │ ├── DataTableExtensions.cs
│ │ └── TypeConversionTool.cs
│ ├── Enums
│ │ ├── Class1.cs
│ │ ├── EmailReceiverType.cs
│ │ ├── EmailStatus.cs
│ │ ├── MenuType.cs
│ │ └── UserStatus.cs
│ ├── LogUtils
│ │ └── Logger.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Wisex.Common.csproj
├── Wisex.Core
│ ├── Elastic
│ │ └── ESSetting.cs
│ │ ├── FTMail.cs
│ │ └── SMTPMailer.cs
│ ├── Extentions
│ │ ├── EnumExtensions.cs
│ │ ├── ExpressionExtention.cs
│ │ ├── ExpressionParameterHelper.cs
│ │ ├── ObjectExtensions.cs
│ │ ├── QueryableExtention.cs
│ │ ├── StringExtention.cs
│ │ └── TypeExtensions.cs
│ ├── Memcached
│ │ ├── MemcachedClientSingleton.cs
│ │ └── MemcachedHelper.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RabbitMQ
│ │ ├── BusBuilder.cs
│ │ ├── IProcessMessage.cs
│ │ ├── Message.cs
│ │ └── MQHelper.cs
│ ├── RedisUtils
│ │ ├── HashOperator.cs
│ │ ├── RedisConfigInfo.cs
│ │ ├── RedisManager.cs
│ │ └── RedisOperatorBase.cs
│ ├── Signalr
│ │ └── Chat.cs
│ ├── Singleton.cs
│ ├── StructureMapWapperUtils
│ │ └── StructureMapWapper.cs
│ ├── WebHelper.cs
│ └── Wisex.Core.csproj
├── Wisex.Data
│ ├── BaseDaoCore
│ │ ├── BaseDaoAttribute.cs
│ │ ├── BaseDaoExtend.cs
│ │ ├── DataRetrieveLogical.cs
│ │ ├── GenericsTypeDataRetrieveLogical.cs
│ │ ├── MenuDataUtil.cs
│ │ └── PrimitiveTypeDataRetrieveLogical.cs
│ ├── BaseDao.cs
│ ├── Daos
│ │ ├── DaoFrame.cs
│ │ └── IDaoFrame.cs
│ ├── DBObjectsMgr
│ │ └── SqlObjectsMgr.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SystemControl
│ │ ├── ILoginLogDao.cs
│ │ ├── IMenuDao.cs
│ │ ├── IPageViewDao.cs
│ │ ├── IRoleDao.cs
│ │ ├── IRoleMenuDao.cs
│ │ ├── IUserDao.cs
│ │ ├── LoginLogDao.cs
│ │ ├── MenuDao.cs
│ │ ├── PageViewDao.cs
│ │ ├── RoleDao.cs
│ │ ├── RoleMenuDao.cs
│ │ └── UserDao.cs
│ └── Wisex.Dao.csproj
├── Wisex.Entity
│ ├── CommonModel
│ │ ├── QueryBase.cs
│ │ └── ResultModel.cs
│ ├── Models
│ │ ├── BaseModel.cs
│ │ ├── EmailPool.cs
│ │ ├── EmailReceiver.cs
│ │ ├── LoginLog.cs
│ │ ├── Menu.cs
│ │ ├── PageView.cs
│ │ ├── Role.cs
│ │ ├── RoleMenu.cs
│ │ ├── SystemObjectFields.cs
│ │ ├── UserModel.cs
│ │ └── UserRole.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Wisex.Entity.csproj
├── Wisex.Service
│ ├── BaseInterfaces.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Services
│ │ ├── BaseService.cs
│ │ └── IBaseService.cs
│ ├── SystemControl
│ │ ├── IEmailPoolService.cs
│ │ ├── IEmailReceiverService.cs
│ │ ├── ILoginLogService.cs
│ │ ├── IMenuService.cs
│ │ ├── IPageViewService.cs
│ │ ├── IRoleMenuService.cs
│ │ ├── IRoleService.cs
│ │ ├── IUserRoleService.cs
│ │ ├── IUserService.cs
│ │ ├── MenuService.cs
│ │ ├── PageViewService.cs
│ │ ├── RoleMenuService.cs
│ │ ├── RoleService.cs
│ │ └── UserService.cs
│ └── Wisex.Service.csproj
├── Wisex.sln
└── WisexWinClient
├── App.config
├── Form1.cs
├── Form1.Designer.cs
├── Form1.resx
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
└── WisexWinClient.csproj
167 directories, 743 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论