├── .vs ├── HTNResp │ └── v15 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide └── config │ └── applicationhost.config ├── 1登录.png ├── 2首页.png ├── 3列表管理.png ├── 4列表修改.png ├── 5新增.png ├── 6图片上传.png ├── 7权限管理.png ├── 8数据库预览.png ├── BLL ├── Access.cs ├── AdaptMedicineUse.cs ├── AdaptSymptom.cs ├── BLL.csproj ├── BLL.csproj.user ├── ControlContent.cs ├── DiagnoseList.cs ├── EvalGuid.cs ├── EvaluationContent.cs ├── GrassRootsOralMedicine.cs ├── Login.cs ├── MedicineProject.cs ├── NonMedicineCure.cs ├── Permission.cs ├── PermissionTable.cs ├── PrevensionProject.cs ├── Program.cs ├── ProjectDictionary.cs ├── Properties │ └── AssemblyInfo.cs ├── SpecialPatientProcess.cs ├── SubMedicineProject.cs ├── SubtMedicineDetail.cs ├── SysManage.cs ├── UserTable.cs ├── bin │ └── Debug │ │ ├── COM.Excel.dll │ │ ├── Excel.dll │ │ ├── HTNResp.BLL.dll │ │ ├── HTNResp.BLL.pdb │ │ ├── HTNResp.Common.dll │ │ ├── HTNResp.Common.pdb │ │ ├── HTNResp.DAL.dll │ │ ├── HTNResp.DAL.pdb │ │ ├── HTNResp.DBUtility.dll │ │ ├── HTNResp.DBUtility.pdb │ │ ├── HTNResp.Model.dll │ │ ├── HTNResp.Model.pdb │ │ ├── IBatisNet.Common.dll │ │ ├── IBatisNet.DataMapper.dll │ │ ├── MySql.Data.dll │ │ ├── OpenSmtp.dll │ │ └── System.Data.SQLite.dll └── obj │ └── Debug │ ├── BLL.csproj.CopyComplete │ ├── BLL.csproj.CoreCompileInputs.cache │ ├── BLL.csproj.FileListAbsolute.txt │ ├── BLL.csprojResolveAssemblyReference.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── HTNResp.BLL.dll │ ├── HTNResp.BLL.pdb │ └── ResolveAssemblyReference.cache ├── Common ├── Assistant.cs ├── ChartHelper.cs ├── CodematicDemo.suo ├── Common.csproj ├── Common.csproj.user ├── ConfigHelper.cs ├── DEncrypt │ ├── DESEncrypt.cs │ ├── DEncrypt.cs │ ├── HashEncode.cs │ ├── RSACryption.cs │ └── vssver2.scc ├── DataCache.cs ├── DataToExcel.cs ├── HttpProc.cs ├── INIFile.cs ├── MailSender.cs ├── MessageBox.cs ├── ModelConvertHelper.cs ├── PageBase.cs ├── PageValidate.cs ├── Properties │ └── AssemblyInfo.cs ├── RMB.cs ├── StringPlus.cs ├── TimeParser.cs ├── UrlOper.cs ├── bin │ └── Debug │ │ ├── COM.Excel.dll │ │ ├── Excel.dll │ │ ├── HTNResp.Common.dll │ │ ├── HTNResp.Common.pdb │ │ ├── OWC10Chart.dll │ │ └── OpenSmtp.dll ├── obj │ └── Debug │ │ ├── Common.csproj.CopyComplete │ │ ├── Common.csproj.CoreCompileInputs.cache │ │ ├── Common.csproj.FileListAbsolute.txt │ │ ├── Common.csprojResolveAssemblyReference.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── HTNResp.Common.dll │ │ ├── HTNResp.Common.pdb │ │ └── ResolveAssemblyReference.cache └── vssver2.scc ├── DAL ├── Access.cs ├── AdaptMedicineUse.cs ├── AdaptSymptom.cs ├── ControlContent.cs ├── DAL.csproj ├── DAL.csproj.user ├── DiagnoseList.cs ├── EvalGuid.cs ├── EvaluationContent.cs ├── GrassRootsOralMedicine.cs ├── Login.cs ├── MedicineProject.cs ├── NonMedicineCure.cs ├── Permission.cs ├── PermissionTable.cs ├── PrevensionProject.cs ├── ProjectDictionary.cs ├── Properties │ └── AssemblyInfo.cs ├── SpecialPatientProcess.cs ├── SubMedicineProject.cs ├── SubtMedicineDetail.cs ├── SysManage.cs ├── UserTable.cs ├── bin │ └── Debug │ │ ├── COM.Excel.dll │ │ ├── Excel.dll │ │ ├── HTNResp.Common.dll │ │ ├── HTNResp.Common.pdb │ │ ├── HTNResp.DAL.dll │ │ ├── HTNResp.DAL.pdb │ │ ├── HTNResp.DBUtility.dll │ │ ├── HTNResp.DBUtility.pdb │ │ ├── HTNResp.Model.dll │ │ ├── HTNResp.Model.pdb │ │ ├── IBatisNet.Common.dll │ │ ├── IBatisNet.DataMapper.dll │ │ ├── MySql.Data.dll │ │ ├── OpenSmtp.dll │ │ └── System.Data.SQLite.dll └── obj │ └── Debug │ ├── DAL.csproj.CopyComplete │ ├── DAL.csproj.CoreCompileInputs.cache │ ├── DAL.csproj.FileListAbsolute.txt │ ├── DAL.csprojResolveAssemblyReference.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── HTNResp.DAL.dll │ ├── HTNResp.DAL.pdb │ └── ResolveAssemblyReference.cache ├── DB.zip ├── DBUtility ├── BaseSqlMapDao.cs ├── CodematicDemo.suo ├── CommandInfo.cs ├── DBUtility.csproj ├── DBUtility.csproj.user ├── DESEncrypt.cs ├── DbHelperMySQL.cs ├── DbHelperOleDb.cs ├── DbHelperOra.cs ├── DbHelperSQL.cs ├── DbHelperSQL2.cs ├── DbHelperSQLP.cs ├── DbHelperSQLite.cs ├── OracleHelper.cs ├── Properties │ └── AssemblyInfo.cs ├── PubConstant.cs ├── SQLHelper.cs ├── bin │ └── Debug │ │ ├── HTNResp.DBUtility.dll │ │ ├── HTNResp.DBUtility.pdb │ │ ├── IBatisNet.Common.dll │ │ ├── IBatisNet.DataMapper.dll │ │ ├── MySql.Data.dll │ │ └── System.Data.SQLite.DLL └── obj │ └── Debug │ ├── DBUtility.csproj.CopyComplete │ ├── DBUtility.csproj.CoreCompileInputs.cache │ ├── DBUtility.csproj.FileListAbsolute.txt │ ├── DBUtility.csprojResolveAssemblyReference.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── HTNResp.DBUtility.dll │ ├── HTNResp.DBUtility.pdb │ └── ResolveAssemblyReference.cache ├── HTNResp.sln ├── HTNResp.suo ├── HTNResp ├── App_Start │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── WebApiConfig.cs ├── Codes │ ├── AuthorityAttribute.cs │ └── LoginAttribute.cs ├── Contents │ └── INSPINIA │ │ ├── css │ │ ├── animate.css │ │ ├── bootstrap.min.css │ │ ├── patterns │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── header-profile-skin-1.png │ │ │ ├── header-profile-skin-2.png │ │ │ ├── header-profile-skin-3.png │ │ │ ├── header-profile.png │ │ │ └── shattered.png │ │ ├── plugins │ │ │ ├── awesome-bootstrap-checkbox │ │ │ │ └── awesome-bootstrap-checkbox.css │ │ │ ├── blueimp │ │ │ │ ├── css │ │ │ │ │ └── blueimp-gallery.min.css │ │ │ │ └── img │ │ │ │ │ ├── error.png │ │ │ │ │ ├── error.svg │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── play-pause.png │ │ │ │ │ ├── play-pause.svg │ │ │ │ │ ├── video-play.png │ │ │ │ │ └── video-play.svg │ │ │ ├── bootstrap-markdown │ │ │ │ └── bootstrap-markdown.min.css │ │ │ ├── bootstrapTour │ │ │ │ └── bootstrap-tour.min.css │ │ │ ├── c3 │ │ │ │ └── c3.min.css │ │ │ ├── chartist │ │ │ │ └── chartist.min.css │ │ │ ├── chosen │ │ │ │ ├── chosen-sprite.png │ │ │ │ ├── chosen-sprite@2x.png │ │ │ │ └── chosen.css │ │ │ ├── clockpicker │ │ │ │ └── clockpicker.css │ │ │ ├── codemirror │ │ │ │ ├── ambiance.css │ │ │ │ └── codemirror.css │ │ │ ├── colorpicker │ │ │ │ └── bootstrap-colorpicker.min.css │ │ │ ├── cropper │ │ │ │ └── cropper.min.css │ │ │ ├── dataTables │ │ │ │ └── datatables.min.css │ │ │ ├── datapicker │ │ │ │ └── datepicker3.css │ │ │ ├── daterangepicker │ │ │ │ └── daterangepicker-bs3.css │ │ │ ├── dropzone │ │ │ │ ├── basic.css │ │ │ │ └── dropzone.css │ │ │ ├── footable │ │ │ │ ├── fonts │ │ │ │ │ ├── footable.eot │ │ │ │ │ ├── footable.svg │ │ │ │ │ ├── footable.ttf │ │ │ │ │ └── footable.woff │ │ │ │ └── footable.core.css │ │ │ ├── fullcalendar │ │ │ │ ├── fullcalendar.css │ │ │ │ └── fullcalendar.print.css │ │ │ ├── iCheck │ │ │ │ ├── custom.css │ │ │ │ ├── green.png │ │ │ │ └── green@2x.png │ │ │ ├── images │ │ │ │ ├── bootstrap-colorpicker │ │ │ │ │ ├── alpha-horizontal.png │ │ │ │ │ ├── alpha.png │ │ │ │ │ ├── hue-horizontal.png │ │ │ │ │ ├── hue.png │ │ │ │ │ └── saturation.png │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ ├── spritemap.png │ │ │ │ └── spritemap@2x.png │ │ │ ├── ionRangeSlider │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ └── ion.rangeSlider.skinFlat.css │ │ │ ├── jQueryUI │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui-1.10.4.custom.min.css │ │ │ │ └── jquery-ui.css │ │ │ ├── jasny │ │ │ │ └── jasny-bootstrap.min.css │ │ │ ├── jqGrid │ │ │ │ └── ui.jqgrid.css │ │ │ ├── jsTree │ │ │ │ ├── 32px.png │ │ │ │ ├── 40px.png │ │ │ │ ├── style.min.css │ │ │ │ └── throbber.gif │ │ │ ├── ladda │ │ │ │ └── ladda-themeless.min.css │ │ │ ├── morris │ │ │ │ └── morris-0.4.3.min.css │ │ │ ├── nouslider │ │ │ │ └── jquery.nouislider.css │ │ │ ├── select2 │ │ │ │ └── select2.min.css │ │ │ ├── slick │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── fonts │ │ │ │ │ ├── slick.eot │ │ │ │ │ ├── slick.svg │ │ │ │ │ ├── slick.ttf │ │ │ │ │ └── slick.woff │ │ │ │ ├── slick-theme.css │ │ │ │ └── slick.css │ │ │ ├── steps │ │ │ │ └── jquery.steps.css │ │ │ ├── summernote │ │ │ │ ├── summernote-bs3.css │ │ │ │ └── summernote.css │ │ │ ├── sweetalert │ │ │ │ └── sweetalert.css │ │ │ ├── switchery │ │ │ │ └── switchery.css │ │ │ ├── toastr │ │ │ │ └── toastr.min.css │ │ │ └── touchspin │ │ │ │ └── jquery.bootstrap-touchspin.min.css │ │ ├── style.css │ │ └── sweetalert.css │ │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── img │ │ ├── 0.jpeg │ │ ├── Thumbs.db │ │ └── addFeedBack.png │ │ └── js │ │ ├── ajaxfileupload.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── demo │ │ ├── chartjs-demo.js │ │ ├── flot-demo.js │ │ ├── morris-demo.js │ │ ├── peity-demo.js │ │ ├── rickshaw-demo.js │ │ └── sparkline-demo.js │ │ ├── echarts.common.min.js │ │ ├── inspinia.js │ │ ├── jquery-2.1.1.js │ │ ├── jquery-ui-1.10.4.min.js │ │ ├── jquery-ui.custom.min.js │ │ └── plugins │ │ ├── blueimp │ │ └── jquery.blueimp-gallery.min.js │ │ ├── bootstrap-markdown │ │ ├── bootstrap-markdown.js │ │ └── markdown.js │ │ ├── bootstrapTour │ │ └── bootstrap-tour.min.js │ │ ├── c3 │ │ └── c3.min.js │ │ ├── chartJs │ │ └── Chart.min.js │ │ ├── chartist │ │ └── chartist.min.js │ │ ├── chosen │ │ └── chosen.jquery.js │ │ ├── clipboard │ │ └── clipboard.min.js │ │ ├── clockpicker │ │ └── clockpicker.js │ │ ├── codemirror │ │ ├── codemirror.js │ │ └── mode │ │ │ └── javascript │ │ │ └── javascript.js │ │ ├── colorpicker │ │ └── bootstrap-colorpicker.min.js │ │ ├── cropper │ │ └── cropper.min.js │ │ ├── d3 │ │ └── d3.min.js │ │ ├── dataTables │ │ └── datatables.min.js │ │ ├── datapicker │ │ └── bootstrap-datepicker.js │ │ ├── daterangepicker │ │ └── daterangepicker.js │ │ ├── diff_match_patch │ │ └── javascript │ │ │ └── diff_match_patch.js │ │ ├── dotdotdot │ │ └── jquery.dotdotdot.min.js │ │ ├── dropzone │ │ └── dropzone.js │ │ ├── easypiechart │ │ └── jquery.easypiechart.js │ │ ├── flot │ │ ├── curvedLines.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.spline.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.time.js │ │ └── jquery.flot.tooltip.min.js │ │ ├── footable │ │ └── footable.all.min.js │ │ ├── fullcalendar │ │ ├── fullcalendar.min.js │ │ └── moment.min.js │ │ ├── gritter │ │ ├── images │ │ │ ├── gritter-light.png │ │ │ ├── gritter.png │ │ │ └── ie-spacer.gif │ │ ├── jquery.gritter.css │ │ └── jquery.gritter.min.js │ │ ├── i18next │ │ └── i18next.min.js │ │ ├── iCheck │ │ └── icheck.min.js │ │ ├── idle-timer │ │ └── idle-timer.min.js │ │ ├── ionRangeSlider │ │ └── ion.rangeSlider.min.js │ │ ├── jasny │ │ └── jasny-bootstrap.min.js │ │ ├── jeditable │ │ └── jquery.jeditable.js │ │ ├── jqGrid │ │ ├── i18n │ │ │ └── grid.locale-en.js │ │ └── jquery.jqGrid.min.js │ │ ├── jquery-ui │ │ └── jquery-ui.min.js │ │ ├── jsKnob │ │ └── jquery.knob.js │ │ ├── jsTree │ │ └── jstree.min.js │ │ ├── jvectormap │ │ ├── jquery-jvectormap-2.0.2.min.js │ │ └── jquery-jvectormap-world-mill-en.js │ │ ├── ladda │ │ ├── ladda.jquery.min.js │ │ ├── ladda.min.js │ │ └── spin.min.js │ │ ├── masonary │ │ └── masonry.pkgd.min.js │ │ ├── metisMenu │ │ └── jquery.metisMenu.js │ │ ├── morris │ │ ├── morris.js │ │ └── raphael-2.1.0.min.js │ │ ├── nestable │ │ └── jquery.nestable.js │ │ ├── nouslider │ │ └── jquery.nouislider.min.js │ │ ├── pace │ │ └── pace.min.js │ │ ├── peity │ │ └── jquery.peity.min.js │ │ ├── preetyTextDiff │ │ └── jquery.pretty-text-diff.min.js │ │ ├── rickshaw │ │ ├── rickshaw.min.js │ │ └── vendor │ │ │ └── d3.v3.js │ │ ├── select2 │ │ └── select2.full.min.js │ │ ├── slick │ │ └── slick.min.js │ │ ├── slimscroll │ │ └── jquery.slimscroll.min.js │ │ ├── sparkline │ │ └── jquery.sparkline.min.js │ │ ├── staps │ │ └── jquery.steps.min.js │ │ ├── summernote │ │ └── summernote.min.js │ │ ├── sweetalert │ │ └── sweetalert.min.js │ │ ├── switchery │ │ └── switchery.js │ │ ├── tinycon │ │ └── tinycon.min.js │ │ ├── toastr │ │ └── toastr.min.js │ │ ├── touchspin │ │ └── jquery.bootstrap-touchspin.min.js │ │ ├── validate │ │ └── jquery.validate.min.js │ │ ├── video │ │ └── responsible-video.js │ │ └── wow │ │ └── wow.min.js ├── Controllers │ ├── AdaptMedicineUseController.cs │ ├── AdaptSymptomController.cs │ ├── AuthListController.cs │ ├── BaseController.cs │ ├── ControlContentController.cs │ ├── DiagnoseListController.cs │ ├── ErrorController.cs │ ├── EvalGuidController.cs │ ├── EvaluationContenController.cs │ ├── GrassRootsController.cs │ ├── HomeController.cs │ ├── IndexController.cs │ ├── NonMedicineCureController.cs │ ├── PrevensionProjectController.cs │ ├── ProjectDictionaryController.cs │ ├── SpecialPatientProcessController.cs │ ├── SubMedicineController.cs │ ├── SubtMedicineDetailController.cs │ └── UserListController.cs ├── File │ ├── 0.jpeg │ ├── Thumbs.db │ └── WechatIMG43.jpeg ├── Global.asax ├── Global.asax.cs ├── HTNResp.Publish.xml ├── HTNResp.csproj ├── HTNResp.csproj.user ├── Models │ └── AdaptMedicineUse.cs ├── Properties │ └── AssemblyInfo.cs ├── Views │ ├── AdaptMedicineUse │ │ └── Index.cshtml │ ├── AdaptSymptom │ │ └── Index.cshtml │ ├── AuthList │ │ └── Index.cshtml │ ├── ControlContent │ │ └── Index.cshtml │ ├── DiagnoseList │ │ └── Index.cshtml │ ├── Error │ │ └── Index.cshtml │ ├── EvalGuid │ │ └── Index.cshtml │ ├── EvaluationContent │ │ └── Index.cshtml │ ├── GrassRoots │ │ ├── Index.cshtml │ │ └── Modify.cshtml │ ├── Home │ │ ├── Illegal.cshtml │ │ └── Index.cshtml │ ├── Index │ │ └── Index.cshtml │ ├── NonMedicineCure │ │ └── Index.cshtml │ ├── PrevensionProject │ │ └── Index.cshtml │ ├── ProjectDictionary │ │ └── Index.cshtml │ ├── Shared │ │ └── _Layout.cshtml │ ├── SpecialPatientProcess │ │ └── Index.cshtml │ ├── SubMedicine │ │ └── Index.cshtml │ ├── SubtMedicineDetail │ │ └── Index.cshtml │ ├── UserList │ │ └── Index.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── bin │ ├── COM.Excel.dll │ ├── Excel.dll │ ├── HTNResp.BLL.dll │ ├── HTNResp.BLL.pdb │ ├── HTNResp.Common.dll │ ├── HTNResp.Common.pdb │ ├── HTNResp.DAL.dll │ ├── HTNResp.DAL.pdb │ ├── HTNResp.DBUtility.dll │ ├── HTNResp.DBUtility.pdb │ ├── HTNResp.Model.dll │ ├── HTNResp.Model.pdb │ ├── HTNResp.dll │ ├── HTNResp.dll.config │ ├── HTNResp.pdb │ ├── IBatisNet.Common.dll │ ├── IBatisNet.DataMapper.dll │ ├── Microsoft.Web.Infrastructure.dll │ ├── MySql.Data.dll │ ├── Newtonsoft.Json.dll │ ├── Newtonsoft.Json.xml │ ├── OWC10Chart.dll │ ├── OpenSmtp.dll │ ├── System.Data.SQLite.dll │ ├── System.Net.Http.Formatting.dll │ ├── System.Net.Http.Formatting.xml │ ├── System.Net.Http.WebRequest.dll │ ├── System.Net.Http.WebRequest.xml │ ├── System.Net.Http.dll │ ├── System.Net.Http.xml │ ├── System.Web.Helpers.dll │ ├── System.Web.Helpers.xml │ ├── System.Web.Http.WebHost.dll │ ├── System.Web.Http.WebHost.xml │ ├── System.Web.Http.dll │ ├── System.Web.Http.xml │ ├── System.Web.Mvc.dll │ ├── System.Web.Mvc.xml │ ├── System.Web.Razor.dll │ ├── System.Web.Razor.xml │ ├── System.Web.WebPages.Deployment.dll │ ├── System.Web.WebPages.Deployment.xml │ ├── System.Web.WebPages.Razor.dll │ ├── System.Web.WebPages.Razor.xml │ ├── System.Web.WebPages.dll │ └── System.Web.WebPages.xml ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── HTNResp.csproj.CopyComplete │ │ ├── HTNResp.csproj.CoreCompileInputs.cache │ │ ├── HTNResp.csproj.FileListAbsolute.txt │ │ ├── HTNResp.csprojResolveAssemblyReference.cache │ │ ├── HTNResp.dll │ │ ├── HTNResp.pdb │ │ └── ResolveAssemblyReference.cache └── packages.config ├── Model ├── Access.cs ├── AdaptMedicineUse.cs ├── AdaptSymptom.cs ├── ControlContent.cs ├── DiagnoseList.cs ├── EvalGuid.cs ├── EvaluationContent.cs ├── GrassRootsOralMedicine.cs ├── Login.cs ├── MedicineProject.cs ├── Model.csproj ├── Model.csproj.user ├── NonMedicineCure.cs ├── Permission.cs ├── PermissionTable.cs ├── PrevensionProject.cs ├── ProjectDictionary.cs ├── Properties │ └── AssemblyInfo.cs ├── SpecialPatientProcess.cs ├── SubMedicineProject.cs ├── SubtMedicineDetail.cs ├── SysNode.cs ├── UserTable.cs ├── bin │ └── Debug │ │ ├── HTNResp.Model.dll │ │ └── HTNResp.Model.pdb └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── HTNResp.Model.dll │ ├── HTNResp.Model.pdb │ ├── Model.csproj.CoreCompileInputs.cache │ └── Model.csproj.FileListAbsolute.txt ├── README.md ├── Thumbs.db └── packages ├── Microsoft.AspNet.Mvc.4.0.20710.0 ├── Microsoft.AspNet.Mvc.4.0.20710.0.nupkg └── lib │ └── net40 │ ├── System.Web.Mvc.dll │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Razor.2.0.20710.0 ├── Microsoft.AspNet.Razor.2.0.20710.0.nupkg └── lib │ └── net40 │ ├── System.Web.Razor.dll │ └── System.Web.Razor.xml ├── Microsoft.AspNet.WebApi.4.0.20710.0 └── Microsoft.AspNet.WebApi.4.0.20710.0.nupkg ├── Microsoft.AspNet.WebApi.Client.4.0.20710.0 ├── Microsoft.AspNet.WebApi.Client.4.0.20710.0.nupkg └── lib │ └── net40 │ ├── System.Net.Http.Formatting.dll │ └── System.Net.Http.Formatting.xml ├── Microsoft.AspNet.WebApi.Core.4.0.20710.0 ├── Microsoft.AspNet.WebApi.Core.4.0.20710.0.nupkg ├── content │ └── web.config.transform └── lib │ └── net40 │ ├── System.Web.Http.dll │ └── System.Web.Http.xml ├── Microsoft.AspNet.WebApi.WebHost.4.0.20710.0 ├── Microsoft.AspNet.WebApi.WebHost.4.0.20710.0.nupkg └── lib │ └── net40 │ ├── System.Web.Http.WebHost.dll │ └── System.Web.Http.WebHost.xml ├── Microsoft.AspNet.WebPages.2.0.20710.0 ├── Microsoft.AspNet.WebPages.2.0.20710.0.nupkg └── lib │ └── net40 │ ├── System.Web.Helpers.dll │ ├── System.Web.Helpers.xml │ ├── System.Web.WebPages.Deployment.dll │ ├── System.Web.WebPages.Deployment.xml │ ├── System.Web.WebPages.Razor.dll │ ├── System.Web.WebPages.Razor.xml │ ├── System.Web.WebPages.dll │ └── System.Web.WebPages.xml ├── Microsoft.Net.Http.2.0.20710.0 ├── Microsoft.Net.Http.2.0.20710.0.nupkg └── lib │ ├── net40 │ ├── System.Net.Http.WebRequest.dll │ ├── System.Net.Http.WebRequest.xml │ ├── System.Net.Http.dll │ └── System.Net.Http.xml │ └── net45 │ └── _._ ├── Microsoft.Web.Infrastructure.1.0.0.0 ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg └── lib │ └── net40 │ └── Microsoft.Web.Infrastructure.dll ├── Newtonsoft.Json.4.5.6 ├── Newtonsoft.Json.4.5.6.nupkg └── lib │ └── net40 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml └── repositories.config /.vs/HTNResp/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/.vs/HTNResp/v15/.suo -------------------------------------------------------------------------------- /.vs/HTNResp/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/.vs/HTNResp/v15/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /.vs/HTNResp/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/.vs/HTNResp/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /1登录.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/1登录.png -------------------------------------------------------------------------------- /2首页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/2首页.png -------------------------------------------------------------------------------- /3列表管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/3列表管理.png -------------------------------------------------------------------------------- /4列表修改.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/4列表修改.png -------------------------------------------------------------------------------- /5新增.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/5新增.png -------------------------------------------------------------------------------- /6图片上传.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/6图片上传.png -------------------------------------------------------------------------------- /7权限管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/7权限管理.png -------------------------------------------------------------------------------- /8数据库预览.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/8数据库预览.png -------------------------------------------------------------------------------- /BLL/Access.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/Access.cs -------------------------------------------------------------------------------- /BLL/BLL.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 7.10.3077 5 | Debug 6 | AnyCPU 7 | 8 | 9 | 10 | 11 | 12 | 13 | 0 14 | ShowAllFiles 15 | 0 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | zh-CN 29 | true 30 | 31 | 32 | false 33 | false 34 | false 35 | false 36 | false 37 | 38 | 39 | Project 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | true 51 | 52 | 53 | false 54 | false 55 | false 56 | false 57 | false 58 | 59 | 60 | Project 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | false 72 | 73 | -------------------------------------------------------------------------------- /BLL/PermissionTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/PermissionTable.cs -------------------------------------------------------------------------------- /BLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | [assembly: AssemblyTitle("业务逻辑层-Maticsoft.Net.SystemFramework")] 6 | [assembly: AssemblyDescription("Maticsoft.Net.SystemFramework 示例项目源码")] 7 | [assembly: AssemblyConfiguration("")] 8 | [assembly: AssemblyCompany("李天平")] 9 | [assembly: AssemblyProduct("http://www.maticsoft.com")] 10 | [assembly: AssemblyCopyright("Copyright (C)Maticsoft 2004-2010")] 11 | [assembly: AssemblyTrademark("")] 12 | [assembly: AssemblyCulture("")] 13 | [assembly: AssemblyVersion("2.0.0.0")] 14 | [assembly: AssemblyFileVersion("2.0.0.0")] -------------------------------------------------------------------------------- /BLL/SubtMedicineDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/SubtMedicineDetail.cs -------------------------------------------------------------------------------- /BLL/SysManage.cs: -------------------------------------------------------------------------------- 1 | using System.Data; 2 | using Maticsoft.Model; 3 | namespace Maticsoft.BLL 4 | { 5 | /// 6 | /// 系统菜单管理。 7 | /// 8 | public class SysManage 9 | { 10 | Maticsoft.DAL.SysManage dal=new Maticsoft.DAL.SysManage(); 11 | 12 | 13 | public SysManage() 14 | { 15 | } 16 | 17 | public int AddTreeNode(SysNode node) 18 | { 19 | return dal.AddTreeNode(node); 20 | } 21 | public void UpdateNode(SysNode node) 22 | { 23 | dal.UpdateNode(node); 24 | } 25 | public void DelTreeNode(int nodeid) 26 | { 27 | dal.DelTreeNode(nodeid); 28 | } 29 | 30 | public DataSet GetTreeList(string strWhere) 31 | { 32 | return dal.GetTreeList(strWhere); 33 | } 34 | 35 | public SysNode GetNode(int NodeID) 36 | { 37 | return dal.GetNode(NodeID); 38 | } 39 | 40 | public int GetPermissionCatalogID(int permissionID) 41 | { 42 | return dal.GetPermissionCatalogID(permissionID); 43 | } 44 | 45 | #region 日志管理 46 | public void AddLog(string time,string loginfo,string Particular) 47 | { 48 | dal.AddLog(time,loginfo,Particular); 49 | } 50 | public void DelOverdueLog(int days) 51 | { 52 | dal.DelOverdueLog(days); 53 | } 54 | public void DeleteLog(string Idlist) 55 | { 56 | string str=""; 57 | if(Idlist.Trim()!="") 58 | { 59 | str=" ID in ("+Idlist+")"; 60 | } 61 | dal.DeleteLog(str); 62 | } 63 | public void DeleteLog(string timestart,string timeend) 64 | { 65 | string str=" datetime>'"+timestart+"' and datetime<'"+timeend+"'"; 66 | dal.DeleteLog(str); 67 | } 68 | public DataSet GetLogs(string strWhere) 69 | { 70 | return dal.GetLogs(strWhere); 71 | } 72 | public DataRow GetLog(string ID) 73 | { 74 | return dal.GetLog(ID); 75 | } 76 | 77 | #endregion 78 | 79 | 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /BLL/UserTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/UserTable.cs -------------------------------------------------------------------------------- /BLL/bin/Debug/COM.Excel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/bin/Debug/COM.Excel.dll -------------------------------------------------------------------------------- /BLL/bin/Debug/Excel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/bin/Debug/Excel.dll -------------------------------------------------------------------------------- /BLL/bin/Debug/HTNResp.BLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/bin/Debug/HTNResp.BLL.dll -------------------------------------------------------------------------------- /BLL/bin/Debug/HTNResp.BLL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/bin/Debug/HTNResp.BLL.pdb -------------------------------------------------------------------------------- /BLL/bin/Debug/HTNResp.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/bin/Debug/HTNResp.Common.dll -------------------------------------------------------------------------------- /BLL/bin/Debug/HTNResp.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/bin/Debug/HTNResp.Common.pdb -------------------------------------------------------------------------------- /BLL/bin/Debug/HTNResp.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/bin/Debug/HTNResp.DAL.dll -------------------------------------------------------------------------------- /BLL/bin/Debug/HTNResp.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/bin/Debug/HTNResp.DAL.pdb -------------------------------------------------------------------------------- /BLL/bin/Debug/HTNResp.DBUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/bin/Debug/HTNResp.DBUtility.dll -------------------------------------------------------------------------------- /BLL/bin/Debug/HTNResp.DBUtility.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/bin/Debug/HTNResp.DBUtility.pdb -------------------------------------------------------------------------------- /BLL/bin/Debug/HTNResp.Model.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/bin/Debug/HTNResp.Model.dll -------------------------------------------------------------------------------- /BLL/bin/Debug/HTNResp.Model.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/bin/Debug/HTNResp.Model.pdb -------------------------------------------------------------------------------- /BLL/bin/Debug/IBatisNet.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/bin/Debug/IBatisNet.Common.dll -------------------------------------------------------------------------------- /BLL/bin/Debug/IBatisNet.DataMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/bin/Debug/IBatisNet.DataMapper.dll -------------------------------------------------------------------------------- /BLL/bin/Debug/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/bin/Debug/MySql.Data.dll -------------------------------------------------------------------------------- /BLL/bin/Debug/OpenSmtp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/bin/Debug/OpenSmtp.dll -------------------------------------------------------------------------------- /BLL/bin/Debug/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/bin/Debug/System.Data.SQLite.dll -------------------------------------------------------------------------------- /BLL/obj/Debug/BLL.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/obj/Debug/BLL.csproj.CopyComplete -------------------------------------------------------------------------------- /BLL/obj/Debug/BLL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 49dc3c25c5ca68e332c9d5fa2b357eb446566218 2 | -------------------------------------------------------------------------------- /BLL/obj/Debug/BLL.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/obj/Debug/BLL.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /BLL/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /BLL/obj/Debug/HTNResp.BLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/obj/Debug/HTNResp.BLL.dll -------------------------------------------------------------------------------- /BLL/obj/Debug/HTNResp.BLL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/obj/Debug/HTNResp.BLL.pdb -------------------------------------------------------------------------------- /BLL/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/BLL/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Common/Assistant.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Configuration; 3 | using System.Text; 4 | using System.Data; 5 | 6 | namespace Maticsoft.Common 7 | { 8 | /// 9 | /// Assistant 的摘要说明。 10 | /// 11 | public sealed class Assistant 12 | { 13 | 14 | #region 15 | 16 | /// 17 | /// 从字符串里随机得到,规定个数的字符串. 18 | /// 19 | /// 20 | /// 21 | /// 22 | private string GetRandomCode(string allChar,int CodeCount) 23 | { 24 | //string allChar = "1,2,3,4,5,6,7,8,9,A,B,C,D,E,F,G,H,i,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z"; 25 | string[] allCharArray = allChar.Split(','); 26 | string RandomCode = ""; 27 | int temp = -1; 28 | Random rand = new Random(); 29 | for (int i=0;i 2 | 3 | 4 | 7.10.3077 5 | Debug 6 | AnyCPU 7 | D:\ltp\MyProject\Windows 程序\DbToCode\DbToCodeDemo\Common\Lib\ 8 | 9 | 10 | 11 | 12 | 0 13 | ProjectFiles 14 | 0 15 | 16 | 17 | 18 | 19 | 20 | 21 | zh-CN 22 | false 23 | 24 | 25 | false 26 | false 27 | false 28 | false 29 | false 30 | 31 | 32 | Project 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | true 44 | 45 | 46 | false 47 | false 48 | false 49 | false 50 | false 51 | 52 | 53 | Project 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | true 65 | 66 | -------------------------------------------------------------------------------- /Common/ConfigHelper.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Configuration; 3 | 4 | namespace Maticsoft.Common 5 | { 6 | /// 7 | /// web.config操作类 8 | /// Copyright (C) Maticsoft 9 | /// 10 | public sealed class ConfigHelper 11 | { 12 | /// 13 | /// 得到AppSettings中的配置字符串信息 14 | /// 15 | /// 16 | /// 17 | public static string GetConfigString(string key) 18 | { 19 | string CacheKey = "AppSettings-" + key; 20 | object objModel = DataCache.GetCache(CacheKey); 21 | if (objModel == null) 22 | { 23 | try 24 | { 25 | objModel = ConfigurationManager.AppSettings[key]; 26 | if (objModel != null) 27 | { 28 | DataCache.SetCache(CacheKey, objModel, DateTime.Now.AddMinutes(180), TimeSpan.Zero); 29 | } 30 | } 31 | catch 32 | { } 33 | } 34 | return objModel.ToString(); 35 | } 36 | 37 | /// 38 | /// 得到AppSettings中的配置Bool信息 39 | /// 40 | /// 41 | /// 42 | public static bool GetConfigBool(string key) 43 | { 44 | bool result = false; 45 | string cfgVal = GetConfigString(key); 46 | if(null != cfgVal && string.Empty != cfgVal) 47 | { 48 | try 49 | { 50 | result = bool.Parse(cfgVal); 51 | } 52 | catch(FormatException) 53 | { 54 | // Ignore format exceptions. 55 | } 56 | } 57 | return result; 58 | } 59 | /// 60 | /// 得到AppSettings中的配置Decimal信息 61 | /// 62 | /// 63 | /// 64 | public static decimal GetConfigDecimal(string key) 65 | { 66 | decimal result = 0; 67 | string cfgVal = GetConfigString(key); 68 | if(null != cfgVal && string.Empty != cfgVal) 69 | { 70 | try 71 | { 72 | result = decimal.Parse(cfgVal); 73 | } 74 | catch(FormatException) 75 | { 76 | // Ignore format exceptions. 77 | } 78 | } 79 | 80 | return result; 81 | } 82 | /// 83 | /// 得到AppSettings中的配置int信息 84 | /// 85 | /// 86 | /// 87 | public static int GetConfigInt(string key) 88 | { 89 | int result = 0; 90 | string cfgVal = GetConfigString(key); 91 | if(null != cfgVal && string.Empty != cfgVal) 92 | { 93 | try 94 | { 95 | result = int.Parse(cfgVal); 96 | } 97 | catch(FormatException) 98 | { 99 | // Ignore format exceptions. 100 | } 101 | } 102 | 103 | return result; 104 | } 105 | } 106 | } 107 | -------------------------------------------------------------------------------- /Common/DEncrypt/HashEncode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Text; 3 | using System.Security.Cryptography; 4 | namespace Maticsoft.Common.DEncrypt 5 | { 6 | /// 7 | /// 得到随机安全码(哈希加密)。 8 | /// 9 | public class HashEncode 10 | { 11 | public HashEncode() 12 | { 13 | // 14 | // TODO: 在此处添加构造函数逻辑 15 | // 16 | } 17 | /// 18 | /// 得到随机哈希加密字符串 19 | /// 20 | /// 21 | public static string GetSecurity() 22 | { 23 | string Security = HashEncoding(GetRandomValue()); 24 | return Security; 25 | } 26 | /// 27 | /// 得到一个随机数值 28 | /// 29 | /// 30 | public static string GetRandomValue() 31 | { 32 | Random Seed = new Random(); 33 | string RandomVaule = Seed.Next(1, int.MaxValue).ToString(); 34 | return RandomVaule; 35 | } 36 | /// 37 | /// 哈希加密一个字符串 38 | /// 39 | /// 40 | /// 41 | public static string HashEncoding(string Security) 42 | { 43 | byte[] Value; 44 | UnicodeEncoding Code = new UnicodeEncoding(); 45 | byte[] Message = Code.GetBytes(Security); 46 | SHA512Managed Arithmetic = new SHA512Managed(); 47 | Value = Arithmetic.ComputeHash(Message); 48 | Security = ""; 49 | foreach(byte o in Value) 50 | { 51 | Security += (int) o + "O"; 52 | } 53 | return Security; 54 | } 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /Common/DEncrypt/vssver2.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Common/DEncrypt/vssver2.scc -------------------------------------------------------------------------------- /Common/DataCache.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Web; 3 | 4 | namespace Maticsoft.Common 5 | { 6 | /// 7 | /// 缓存相关的操作类 8 | /// Copyright (C) Maticsoft 9 | /// 10 | public class DataCache 11 | { 12 | /// 13 | /// 获取当前应用程序指定CacheKey的Cache值 14 | /// 15 | /// 16 | /// 17 | public static object GetCache(string CacheKey) 18 | { 19 | System.Web.Caching.Cache objCache = HttpRuntime.Cache; 20 | return objCache[CacheKey]; 21 | } 22 | 23 | /// 24 | /// 设置当前应用程序指定CacheKey的Cache值 25 | /// 26 | /// 27 | /// 28 | public static void SetCache(string CacheKey, object objObject) 29 | { 30 | System.Web.Caching.Cache objCache = HttpRuntime.Cache; 31 | objCache.Insert(CacheKey, objObject); 32 | } 33 | 34 | /// 35 | /// 设置当前应用程序指定CacheKey的Cache值 36 | /// 37 | /// 38 | /// 39 | public static void SetCache(string CacheKey, object objObject, DateTime absoluteExpiration,TimeSpan slidingExpiration ) 40 | { 41 | System.Web.Caching.Cache objCache = HttpRuntime.Cache; 42 | objCache.Insert(CacheKey, objObject,null,absoluteExpiration,slidingExpiration); 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /Common/INIFile.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Runtime.InteropServices; 3 | using System.Text; 4 | using System.IO; 5 | 6 | namespace Maticsoft.Common 7 | { 8 | /// 9 | /// INI文件读写类。 10 | /// Copyright (C) Maticsoft 11 | /// 12 | public class INIFile 13 | { 14 | public string path; 15 | 16 | public INIFile(string INIPath) 17 | { 18 | path = INIPath; 19 | } 20 | 21 | [DllImport("kernel32")] 22 | private static extern long WritePrivateProfileString(string section,string key,string val,string filePath); 23 | 24 | [DllImport("kernel32")] 25 | private static extern int GetPrivateProfileString(string section,string key,string def, StringBuilder retVal,int size,string filePath); 26 | 27 | 28 | [DllImport("kernel32")] 29 | private static extern int GetPrivateProfileString(string section, string key, string defVal, Byte[] retVal, int size, string filePath); 30 | 31 | 32 | /// 33 | /// 写INI文件 34 | /// 35 | /// 36 | /// 37 | /// 38 | public void IniWriteValue(string Section,string Key,string Value) 39 | { 40 | WritePrivateProfileString(Section,Key,Value,this.path); 41 | } 42 | 43 | /// 44 | /// 读取INI文件 45 | /// 46 | /// 47 | /// 48 | /// 49 | public string IniReadValue(string Section,string Key) 50 | { 51 | StringBuilder temp = new StringBuilder(255); 52 | int i = GetPrivateProfileString(Section,Key,"",temp, 255, this.path); 53 | return temp.ToString(); 54 | } 55 | public byte[] IniReadValues(string section, string key) 56 | { 57 | byte[] temp = new byte[255]; 58 | int i = GetPrivateProfileString(section, key, "", temp, 255, this.path); 59 | return temp; 60 | 61 | } 62 | 63 | 64 | /// 65 | /// 删除ini文件下所有段落 66 | /// 67 | public void ClearAllSection() 68 | { 69 | IniWriteValue(null,null,null); 70 | } 71 | /// 72 | /// 删除ini文件下personal段落下的所有键 73 | /// 74 | /// 75 | public void ClearSection(string Section) 76 | { 77 | IniWriteValue(Section,null,null); 78 | } 79 | 80 | } 81 | 82 | 83 | } 84 | -------------------------------------------------------------------------------- /Common/MessageBox.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Text; 3 | namespace Maticsoft.Common 4 | { 5 | /// 6 | /// 显示消息提示对话框。 7 | /// Copyright (C) Maticsoft 8 | /// 9 | public class MessageBox 10 | { 11 | private MessageBox() 12 | { 13 | } 14 | 15 | /// 16 | /// 显示消息提示对话框 17 | /// 18 | /// 当前页面指针,一般为this 19 | /// 提示信息 20 | public static void Show(System.Web.UI.Page page,string msg) 21 | { 22 | page.ClientScript.RegisterStartupScript(page.GetType(),"message", ""); 23 | } 24 | 25 | /// 26 | /// 控件点击 消息确认提示框 27 | /// 28 | /// 当前页面指针,一般为this 29 | /// 提示信息 30 | public static void ShowConfirm(System.Web.UI.WebControls.WebControl Control,string msg) 31 | { 32 | //Control.Attributes.Add("onClick","if (!window.confirm('"+msg+"')){return false;}"); 33 | Control.Attributes.Add("onclick", "return confirm('" + msg + "');") ; 34 | } 35 | 36 | /// 37 | /// 显示消息提示对话框,并进行页面跳转 38 | /// 39 | /// 当前页面指针,一般为this 40 | /// 提示信息 41 | /// 跳转的目标URL 42 | public static void ShowAndRedirect(System.Web.UI.Page page,string msg,string url) 43 | { 44 | //Response.Write(""); 45 | page.ClientScript.RegisterStartupScript(page.GetType(), "message", ""); 46 | 47 | 48 | } 49 | /// 50 | /// 显示消息提示对话框,并进行页面跳转 51 | /// 52 | /// 当前页面指针,一般为this 53 | /// 提示信息 54 | /// 跳转的目标URL 55 | public static void ShowAndRedirects(System.Web.UI.Page page, string msg, string url) 56 | { 57 | StringBuilder Builder = new StringBuilder(); 58 | Builder.Append(""); 62 | page.ClientScript.RegisterStartupScript(page.GetType(), "message", Builder.ToString()); 63 | 64 | } 65 | 66 | /// 67 | /// 输出自定义脚本信息 68 | /// 69 | /// 当前页面指针,一般为this 70 | /// 输出脚本 71 | public static void ResponseScript(System.Web.UI.Page page,string script) 72 | { 73 | page.ClientScript.RegisterStartupScript(page.GetType(), "message", ""); 74 | 75 | } 76 | 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /Common/ModelConvertHelper.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Data; 4 | using System.Linq; 5 | using System.Reflection; 6 | using System.Text; 7 | 8 | namespace HTNResp.Common 9 | { 10 | /// 11 | /// 实体转换辅助类 12 | /// 13 | public class ModelConvertHelper 14 | { 15 | public static string ConvertToModel(DataTable table) 16 | { 17 | var JsonString = new StringBuilder(); 18 | if (table.Rows.Count > 0) 19 | { 20 | JsonString.Append("["); 21 | for (int i = 0; i < table.Rows.Count; i++) 22 | { 23 | JsonString.Append("{"); 24 | for (int j = 0; j < table.Columns.Count; j++) 25 | { 26 | if (j < table.Columns.Count - 1) 27 | { 28 | JsonString.Append("\"" + table.Columns[j].ColumnName.ToString() + "\":" + "\"" + table.Rows[i][j].ToString() + "\","); 29 | } 30 | else if (j == table.Columns.Count - 1) 31 | { 32 | JsonString.Append("\"" + table.Columns[j].ColumnName.ToString() + "\":" + "\"" + table.Rows[i][j].ToString() + "\""); 33 | } 34 | } 35 | if (i == table.Rows.Count - 1) 36 | { 37 | JsonString.Append("}"); 38 | } 39 | else 40 | { 41 | JsonString.Append("},"); 42 | } 43 | } 44 | JsonString.Append("]"); 45 | } 46 | return JsonString.ToString(); 47 | } 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | 4 | [assembly: AssemblyTitle("Maticsoft.Common")] 5 | [assembly: AssemblyDescription("Common Library By Maticsoft")] 6 | [assembly: AssemblyConfiguration("Maticsoft")] 7 | [assembly: AssemblyCompany("动软卓越(北京)科技有限公司")] 8 | [assembly: AssemblyProduct("Maticsoft.Common")] 9 | [assembly: AssemblyCopyright("Copyright (C) Maticsoft 2004-2012")] 10 | [assembly: AssemblyTrademark("")] 11 | [assembly: AssemblyCulture("")] 12 | [assembly: AssemblyVersion("3.5.0")] 13 | [assembly: AssemblyDelaySign(false)] 14 | [assembly: AssemblyKeyFile("")] 15 | [assembly: AssemblyKeyName("")] 16 | -------------------------------------------------------------------------------- /Common/TimeParser.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace Maticsoft.Common 6 | { 7 | public class TimeParser 8 | { 9 | /// 10 | /// 把秒转换成分钟 11 | /// 12 | /// 13 | public static int SecondToMinute(int Second) 14 | { 15 | decimal mm = (decimal)((decimal)Second / (decimal)60); 16 | return Convert.ToInt32(Math.Ceiling(mm)); 17 | } 18 | 19 | #region 返回某年某月最后一天 20 | /// 21 | /// 返回某年某月最后一天 22 | /// 23 | /// 年份 24 | /// 月份 25 | /// 26 | public static int GetMonthLastDate(int year, int month) 27 | { 28 | DateTime lastDay = new DateTime(year, month, new System.Globalization.GregorianCalendar().GetDaysInMonth(year, month)); 29 | int Day = lastDay.Day; 30 | return Day; 31 | } 32 | #endregion 33 | 34 | #region 返回时间差 35 | public static string DateDiff(DateTime DateTime1, DateTime DateTime2) 36 | { 37 | string dateDiff = null; 38 | try 39 | { 40 | //TimeSpan ts1 = new TimeSpan(DateTime1.Ticks); 41 | //TimeSpan ts2 = new TimeSpan(DateTime2.Ticks); 42 | //TimeSpan ts = ts1.Subtract(ts2).Duration(); 43 | TimeSpan ts = DateTime2 - DateTime1; 44 | if (ts.Days >=1) 45 | { 46 | dateDiff = DateTime1.Month.ToString() + "月" + DateTime1.Day.ToString() + "日"; 47 | } 48 | else 49 | { 50 | if (ts.Hours > 1) 51 | { 52 | dateDiff = ts.Hours.ToString() + "小时前"; 53 | } 54 | else 55 | { 56 | dateDiff = ts.Minutes.ToString() + "分钟前"; 57 | } 58 | } 59 | } 60 | catch 61 | { } 62 | return dateDiff; 63 | } 64 | #endregion 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /Common/bin/Debug/COM.Excel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Common/bin/Debug/COM.Excel.dll -------------------------------------------------------------------------------- /Common/bin/Debug/Excel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Common/bin/Debug/Excel.dll -------------------------------------------------------------------------------- /Common/bin/Debug/HTNResp.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Common/bin/Debug/HTNResp.Common.dll -------------------------------------------------------------------------------- /Common/bin/Debug/HTNResp.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Common/bin/Debug/HTNResp.Common.pdb -------------------------------------------------------------------------------- /Common/bin/Debug/OWC10Chart.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Common/bin/Debug/OWC10Chart.dll -------------------------------------------------------------------------------- /Common/bin/Debug/OpenSmtp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Common/bin/Debug/OpenSmtp.dll -------------------------------------------------------------------------------- /Common/obj/Debug/Common.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Common/obj/Debug/Common.csproj.CopyComplete -------------------------------------------------------------------------------- /Common/obj/Debug/Common.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | f46d209dc5b7c7d7ed6236624644d8fb42f156d7 2 | -------------------------------------------------------------------------------- /Common/obj/Debug/Common.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\CodematicDemo\CodematicDemo\Common\bin\Debug\HTNResp.Common.dll 2 | C:\CodematicDemo\CodematicDemo\Common\bin\Debug\HTNResp.Common.pdb 3 | C:\CodematicDemo\CodematicDemo\Common\bin\Debug\COM.Excel.dll 4 | C:\CodematicDemo\CodematicDemo\Common\bin\Debug\Excel.dll 5 | C:\CodematicDemo\CodematicDemo\Common\bin\Debug\OpenSmtp.dll 6 | C:\CodematicDemo\CodematicDemo\Common\bin\Debug\OWC10Chart.dll 7 | C:\CodematicDemo\CodematicDemo\Common\obj\Debug\ResolveAssemblyReference.cache 8 | C:\CodematicDemo\CodematicDemo\Common\obj\Debug\HTNResp.Common.dll 9 | C:\CodematicDemo\CodematicDemo\Common\obj\Debug\HTNResp.Common.pdb 10 | C:\VSProject\MVCDemp\Common\bin\Debug\HTNResp.Common.dll 11 | C:\VSProject\MVCDemp\Common\bin\Debug\HTNResp.Common.pdb 12 | C:\VSProject\MVCDemp\Common\obj\Debug\ResolveAssemblyReference.cache 13 | C:\VSProject\MVCDemp\Common\obj\Debug\HTNResp.Common.dll 14 | C:\VSProject\MVCDemp\Common\obj\Debug\HTNResp.Common.pdb 15 | C:\Users\fwyy\Desktop\HTNResp001\Common\bin\Debug\HTNResp.Common.dll 16 | C:\Users\fwyy\Desktop\HTNResp001\Common\bin\Debug\HTNResp.Common.pdb 17 | C:\Users\fwyy\Desktop\HTNResp001\Common\obj\Debug\Common.csprojResolveAssemblyReference.cache 18 | C:\Users\fwyy\Desktop\HTNResp001\Common\obj\Debug\HTNResp.Common.dll 19 | C:\Users\fwyy\Desktop\HTNResp001\Common\obj\Debug\HTNResp.Common.pdb 20 | C:\Users\xxzx\Desktop\HTNResp001\Common\bin\Debug\HTNResp.Common.dll 21 | C:\Users\xxzx\Desktop\HTNResp001\Common\bin\Debug\HTNResp.Common.pdb 22 | C:\Users\xxzx\Desktop\HTNResp001\Common\obj\Debug\ResolveAssemblyReference.cache 23 | C:\Users\xxzx\Desktop\HTNResp001\Common\obj\Debug\HTNResp.Common.dll 24 | C:\Users\xxzx\Desktop\HTNResp001\Common\obj\Debug\HTNResp.Common.pdb 25 | E:\HTNResp002\Common\bin\Debug\HTNResp.Common.dll 26 | E:\HTNResp002\Common\bin\Debug\HTNResp.Common.pdb 27 | E:\HTNResp002\Common\obj\Debug\Common.csprojResolveAssemblyReference.cache 28 | E:\HTNResp002\Common\obj\Debug\HTNResp.Common.dll 29 | E:\HTNResp002\Common\obj\Debug\HTNResp.Common.pdb 30 | \\Mac\Home\Downloads\HTNResp002\Common\bin\Debug\HTNResp.Common.dll 31 | \\Mac\Home\Downloads\HTNResp002\Common\bin\Debug\HTNResp.Common.pdb 32 | \\Mac\Home\Downloads\HTNResp002\Common\obj\Debug\Common.csproj.CoreCompileInputs.cache 33 | \\Mac\Home\Downloads\HTNResp002\Common\obj\Debug\HTNResp.Common.dll 34 | \\Mac\Home\Downloads\HTNResp002\Common\obj\Debug\HTNResp.Common.pdb 35 | Y:\github\aspnetmvc_management_system\Common\bin\Debug\HTNResp.Common.dll 36 | Y:\github\aspnetmvc_management_system\Common\bin\Debug\HTNResp.Common.pdb 37 | Y:\github\aspnetmvc_management_system\Common\obj\Debug\Common.csprojResolveAssemblyReference.cache 38 | Y:\github\aspnetmvc_management_system\Common\obj\Debug\Common.csproj.CoreCompileInputs.cache 39 | Y:\github\aspnetmvc_management_system\Common\obj\Debug\HTNResp.Common.dll 40 | Y:\github\aspnetmvc_management_system\Common\obj\Debug\HTNResp.Common.pdb 41 | -------------------------------------------------------------------------------- /Common/obj/Debug/Common.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Common/obj/Debug/Common.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Common/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Common/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Common/obj/Debug/HTNResp.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Common/obj/Debug/HTNResp.Common.dll -------------------------------------------------------------------------------- /Common/obj/Debug/HTNResp.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Common/obj/Debug/HTNResp.Common.pdb -------------------------------------------------------------------------------- /Common/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Common/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Common/vssver2.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Common/vssver2.scc -------------------------------------------------------------------------------- /DAL/Access.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/Access.cs -------------------------------------------------------------------------------- /DAL/DAL.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 7.10.3077 5 | Debug 6 | AnyCPU 7 | C:\Program Files\NUnit 2.2\bin\ 8 | 9 | 10 | 11 | 12 | 0 13 | ShowAllFiles 14 | 0 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | zh-CN 28 | true 29 | 30 | 31 | false 32 | false 33 | false 34 | false 35 | false 36 | 37 | 38 | Project 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | true 50 | 51 | 52 | false 53 | false 54 | false 55 | false 56 | false 57 | 58 | 59 | Project 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | true 71 | 72 | -------------------------------------------------------------------------------- /DAL/PermissionTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/PermissionTable.cs -------------------------------------------------------------------------------- /DAL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | [assembly: AssemblyTitle("数据访问层-Maticsoft.Net.SystemFramework")] 6 | [assembly: AssemblyDescription("Maticsoft.Net.SystemFramework示例项目源码")] 7 | [assembly: AssemblyConfiguration("")] 8 | [assembly: AssemblyCompany("李天平")] 9 | [assembly: AssemblyProduct("http://www.maticsoft.com")] 10 | [assembly: AssemblyCopyright("Copyright (C)Maticsoft 2004-2010")] 11 | [assembly: AssemblyTrademark("")] 12 | [assembly: AssemblyCulture("")] 13 | [assembly: AssemblyVersion("2.0.0.0")] 14 | [assembly: AssemblyFileVersion("2.0.0.0")] 15 | -------------------------------------------------------------------------------- /DAL/SubtMedicineDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/SubtMedicineDetail.cs -------------------------------------------------------------------------------- /DAL/UserTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/UserTable.cs -------------------------------------------------------------------------------- /DAL/bin/Debug/COM.Excel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/bin/Debug/COM.Excel.dll -------------------------------------------------------------------------------- /DAL/bin/Debug/Excel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/bin/Debug/Excel.dll -------------------------------------------------------------------------------- /DAL/bin/Debug/HTNResp.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/bin/Debug/HTNResp.Common.dll -------------------------------------------------------------------------------- /DAL/bin/Debug/HTNResp.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/bin/Debug/HTNResp.Common.pdb -------------------------------------------------------------------------------- /DAL/bin/Debug/HTNResp.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/bin/Debug/HTNResp.DAL.dll -------------------------------------------------------------------------------- /DAL/bin/Debug/HTNResp.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/bin/Debug/HTNResp.DAL.pdb -------------------------------------------------------------------------------- /DAL/bin/Debug/HTNResp.DBUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/bin/Debug/HTNResp.DBUtility.dll -------------------------------------------------------------------------------- /DAL/bin/Debug/HTNResp.DBUtility.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/bin/Debug/HTNResp.DBUtility.pdb -------------------------------------------------------------------------------- /DAL/bin/Debug/HTNResp.Model.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/bin/Debug/HTNResp.Model.dll -------------------------------------------------------------------------------- /DAL/bin/Debug/HTNResp.Model.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/bin/Debug/HTNResp.Model.pdb -------------------------------------------------------------------------------- /DAL/bin/Debug/IBatisNet.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/bin/Debug/IBatisNet.Common.dll -------------------------------------------------------------------------------- /DAL/bin/Debug/IBatisNet.DataMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/bin/Debug/IBatisNet.DataMapper.dll -------------------------------------------------------------------------------- /DAL/bin/Debug/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/bin/Debug/MySql.Data.dll -------------------------------------------------------------------------------- /DAL/bin/Debug/OpenSmtp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/bin/Debug/OpenSmtp.dll -------------------------------------------------------------------------------- /DAL/bin/Debug/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/bin/Debug/System.Data.SQLite.dll -------------------------------------------------------------------------------- /DAL/obj/Debug/DAL.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/obj/Debug/DAL.csproj.CopyComplete -------------------------------------------------------------------------------- /DAL/obj/Debug/DAL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | f08f2f4d4abb66e3430f642df87af2e16b3a3bb9 2 | -------------------------------------------------------------------------------- /DAL/obj/Debug/DAL.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/obj/Debug/DAL.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /DAL/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DAL/obj/Debug/HTNResp.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/obj/Debug/HTNResp.DAL.dll -------------------------------------------------------------------------------- /DAL/obj/Debug/HTNResp.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/obj/Debug/HTNResp.DAL.pdb -------------------------------------------------------------------------------- /DAL/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DAL/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /DB.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DB.zip -------------------------------------------------------------------------------- /DBUtility/CodematicDemo.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DBUtility/CodematicDemo.suo -------------------------------------------------------------------------------- /DBUtility/CommandInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Data.SqlClient; 5 | namespace Maticsoft.DBUtility 6 | { 7 | public enum EffentNextType 8 | { 9 | /// 10 | /// 对其他语句无任何影响 11 | /// 12 | None, 13 | /// 14 | /// 当前语句必须为"select count(1) from .."格式,如果存在则继续执行,不存在回滚事务 15 | /// 16 | WhenHaveContine, 17 | /// 18 | /// 当前语句必须为"select count(1) from .."格式,如果不存在则继续执行,存在回滚事务 19 | /// 20 | WhenNoHaveContine, 21 | /// 22 | /// 当前语句影响到的行数必须大于0,否则回滚事务 23 | /// 24 | ExcuteEffectRows, 25 | /// 26 | /// 引发事件-当前语句必须为"select count(1) from .."格式,如果不存在则继续执行,存在回滚事务 27 | /// 28 | SolicitationEvent 29 | } 30 | public class CommandInfo 31 | { 32 | public object ShareObject = null; 33 | public object OriginalData = null; 34 | event EventHandler _solicitationEvent; 35 | public event EventHandler SolicitationEvent 36 | { 37 | add 38 | { 39 | _solicitationEvent += value; 40 | } 41 | remove 42 | { 43 | _solicitationEvent -= value; 44 | } 45 | } 46 | public void OnSolicitationEvent() 47 | { 48 | if (_solicitationEvent != null) 49 | { 50 | _solicitationEvent(this,new EventArgs()); 51 | } 52 | } 53 | public string CommandText; 54 | public System.Data.Common.DbParameter[] Parameters; 55 | public EffentNextType EffentNextType = EffentNextType.None; 56 | public CommandInfo() 57 | { 58 | 59 | } 60 | public CommandInfo(string sqlText, SqlParameter[] para) 61 | { 62 | this.CommandText = sqlText; 63 | this.Parameters = para; 64 | } 65 | public CommandInfo(string sqlText, SqlParameter[] para, EffentNextType type) 66 | { 67 | this.CommandText = sqlText; 68 | this.Parameters = para; 69 | this.EffentNextType = type; 70 | } 71 | } 72 | } 73 | -------------------------------------------------------------------------------- /DBUtility/DBUtility.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ProjectFiles 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | zh-CN 18 | true 19 | 20 | -------------------------------------------------------------------------------- /DBUtility/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | 4 | [assembly: AssemblyTitle("Maticsoft.DBUtility")] 5 | [assembly: AssemblyDescription("Data Access Application Model By Maticsoft")] 6 | [assembly: AssemblyConfiguration("Maticsoft")] 7 | [assembly: AssemblyCompany("Maticsoft")] 8 | [assembly: AssemblyProduct("Maticsoft.DBUtility")] 9 | [assembly: AssemblyCopyright("Copyright (C) Maticsoft 2004-2010")] 10 | [assembly: AssemblyTrademark("")] 11 | [assembly: AssemblyCulture("")] 12 | [assembly: AssemblyVersion("3.5.0")] 13 | [assembly: AssemblyDelaySign(false)] 14 | [assembly: AssemblyKeyFile("")] 15 | [assembly: AssemblyKeyName("")] 16 | -------------------------------------------------------------------------------- /DBUtility/PubConstant.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Configuration; 3 | namespace Maticsoft.DBUtility 4 | { 5 | 6 | public class PubConstant 7 | { 8 | /// 9 | /// 获取连接字符串 10 | /// 11 | public static string ConnectionString 12 | { 13 | get 14 | { 15 | string _connectionString = ConfigurationManager.AppSettings["ConnectionString"]; 16 | string ConStringEncrypt = ConfigurationManager.AppSettings["ConStringEncrypt"]; 17 | if (ConStringEncrypt == "true") 18 | { 19 | _connectionString = DESEncrypt.Decrypt(_connectionString); 20 | } 21 | return _connectionString; 22 | } 23 | } 24 | 25 | /// 26 | /// 得到web.config里配置项的数据库连接字符串。 27 | /// 28 | /// 29 | /// 30 | public static string GetConnectionString(string configName) 31 | { 32 | string connectionString = ConfigurationManager.AppSettings[configName]; 33 | string ConStringEncrypt = ConfigurationManager.AppSettings["ConStringEncrypt"]; 34 | if (ConStringEncrypt == "true") 35 | { 36 | connectionString = DESEncrypt.Decrypt(connectionString); 37 | } 38 | return connectionString; 39 | } 40 | 41 | 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /DBUtility/bin/Debug/HTNResp.DBUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DBUtility/bin/Debug/HTNResp.DBUtility.dll -------------------------------------------------------------------------------- /DBUtility/bin/Debug/HTNResp.DBUtility.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DBUtility/bin/Debug/HTNResp.DBUtility.pdb -------------------------------------------------------------------------------- /DBUtility/bin/Debug/IBatisNet.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DBUtility/bin/Debug/IBatisNet.Common.dll -------------------------------------------------------------------------------- /DBUtility/bin/Debug/IBatisNet.DataMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DBUtility/bin/Debug/IBatisNet.DataMapper.dll -------------------------------------------------------------------------------- /DBUtility/bin/Debug/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DBUtility/bin/Debug/MySql.Data.dll -------------------------------------------------------------------------------- /DBUtility/bin/Debug/System.Data.SQLite.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DBUtility/bin/Debug/System.Data.SQLite.DLL -------------------------------------------------------------------------------- /DBUtility/obj/Debug/DBUtility.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DBUtility/obj/Debug/DBUtility.csproj.CopyComplete -------------------------------------------------------------------------------- /DBUtility/obj/Debug/DBUtility.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 240def3507dd8f1422c430e20b88736062463c68 2 | -------------------------------------------------------------------------------- /DBUtility/obj/Debug/DBUtility.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DBUtility/obj/Debug/DBUtility.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /DBUtility/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DBUtility/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DBUtility/obj/Debug/HTNResp.DBUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DBUtility/obj/Debug/HTNResp.DBUtility.dll -------------------------------------------------------------------------------- /DBUtility/obj/Debug/HTNResp.DBUtility.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DBUtility/obj/Debug/HTNResp.DBUtility.pdb -------------------------------------------------------------------------------- /DBUtility/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/DBUtility/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /HTNResp.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp.suo -------------------------------------------------------------------------------- /HTNResp/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Mvc; 3 | 4 | namespace HTNResp 5 | { 6 | public class FilterConfig 7 | { 8 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 9 | { 10 | filters.Add(new HandleErrorAttribute()); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /HTNResp/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using System.Web.Routing; 7 | 8 | namespace HTNResp 9 | { 10 | public class RouteConfig 11 | { 12 | public static void RegisterRoutes(RouteCollection routes) 13 | { 14 | routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); 15 | 16 | routes.MapRoute( 17 | name: "Default", 18 | url: "{controller}/{action}/{id}", 19 | defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } 20 | ); 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /HTNResp/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web.Http; 5 | 6 | namespace HTNResp 7 | { 8 | public static class WebApiConfig 9 | { 10 | public static void Register(HttpConfiguration config) 11 | { 12 | config.Routes.MapHttpRoute( 13 | name: "DefaultApi", 14 | routeTemplate: "api/{controller}/{id}", 15 | defaults: new { id = RouteParameter.Optional } 16 | ); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /HTNResp/Codes/AuthorityAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using System.Text.RegularExpressions; 7 | 8 | namespace HTNResp.Codes 9 | { 10 | public class AuthorityAttribute:ActionFilterAttribute 11 | { 12 | private int feedback = 0; 13 | 14 | public int Feedback 15 | { 16 | get { return feedback; } 17 | set { feedback = value; } 18 | } 19 | 20 | 21 | public override void OnActionExecuting(ActionExecutingContext filterContext) { 22 | HttpRequestBase bases = (HttpRequestBase)filterContext.HttpContext.Request; 23 | string url = bases.RawUrl.ToString().ToLower(); 24 | if (!string.IsNullOrEmpty(url)) 25 | { 26 | string[] temp = Regex.Split(url, "/"); 27 | if (filterContext.HttpContext.Session["access"] != null && !string.IsNullOrEmpty(filterContext.HttpContext.Session["access"].ToString())) 28 | { 29 | string session = filterContext.HttpContext.Session["access"].ToString().ToLower(); 30 | if (!session.Contains(temp[1])) 31 | { 32 | if (this.feedback == 100) 33 | filterContext.Result = new RedirectResult("/Home/Illegal"); 34 | else if (this.feedback == 300) 35 | filterContext.Result = new JsonResult 36 | { 37 | Data = new { result = feedback, msg = "" } 38 | }; 39 | } 40 | } 41 | } 42 | } 43 | } 44 | } -------------------------------------------------------------------------------- /HTNResp/Codes/LoginAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using System.Text.RegularExpressions; 7 | 8 | namespace HTNResp.Codes 9 | { 10 | public class LoginAttribute : ActionFilterAttribute 11 | { 12 | private int feedback; 13 | private string name; 14 | public int Feedback 15 | { 16 | get { return feedback; } 17 | set { feedback = value; } 18 | } 19 | public override void OnActionExecuting(ActionExecutingContext filterContext) 20 | { 21 | filterContext.HttpContext.Response.Buffer = true; 22 | filterContext.HttpContext.Response.Buffer = true; 23 | filterContext.HttpContext.Response.ExpiresAbsolute = DateTime.Now.AddDays(-1); 24 | filterContext.HttpContext.Response.Cache.SetExpires(DateTime.Now.AddDays(-1)); 25 | filterContext.HttpContext.Response.Expires = 0; 26 | filterContext.HttpContext.Response.CacheControl = "no-cache"; 27 | filterContext.HttpContext.Response.Cache.SetNoStore(); 28 | if (feedback == -7) 29 | { 30 | name = (string)filterContext.HttpContext.Session["username"]; 31 | } 32 | else 33 | { 34 | if (filterContext.HttpContext.Session["username"] == null || string.IsNullOrEmpty(filterContext.HttpContext.Session["username"].ToString())) 35 | { 36 | switch (this.feedback) 37 | { 38 | case 200: 39 | filterContext.Result = new RedirectResult("/Home/Index"); break; 40 | case 100: 41 | filterContext.Result = new JsonResult 42 | { 43 | Data = new { result = feedback, msg = "" } 44 | }; break; 45 | } 46 | } 47 | else 48 | { 49 | base.OnActionExecuting(filterContext); 50 | } 51 | } 52 | 53 | // session 54 | 55 | } 56 | } 57 | } -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/patterns/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/patterns/3.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/patterns/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/patterns/4.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/patterns/header-profile-skin-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/patterns/header-profile-skin-1.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/patterns/header-profile-skin-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/patterns/header-profile-skin-2.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/patterns/header-profile-skin-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/patterns/header-profile-skin-3.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/patterns/header-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/patterns/header-profile.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/patterns/shattered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/patterns/shattered.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/blueimp/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/blueimp/img/error.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/blueimp/img/error.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/blueimp/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/blueimp/img/loading.gif -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/blueimp/img/play-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/blueimp/img/play-pause.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/blueimp/img/play-pause.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/blueimp/img/video-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/blueimp/img/video-play.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/blueimp/img/video-play.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/bootstrap-markdown/bootstrap-markdown.min.css: -------------------------------------------------------------------------------- 1 | .md-editor{display:block;border:1px solid #ddd}.md-editor .md-footer,.md-editor>.md-header{display:block;padding:6px 4px;background:#f5f5f5}.md-editor>.md-header{margin:0}.md-editor>.md-preview{background:#fff;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;min-height:10px;overflow:auto}.md-editor>textarea{font-family:Menlo,Monaco,Consolas,"Courier New",monospace;font-size:14px;outline:0;margin:0;display:block;padding:0;width:100%;border:0;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;border-radius:0;box-shadow:none;background:#eee}.md-editor>textarea:focus{box-shadow:none;background:#fff}.md-editor.active{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.md-editor .md-controls{float:right;padding:3px}.md-editor .md-controls .md-control{right:5px;color:#bebebe;padding:3px 3px 3px 10px}.md-editor .md-controls .md-control:hover{color:#333}.md-editor.md-fullscreen-mode{width:100%;height:100%;position:fixed;top:0;left:0;z-index:99999;padding:60px 30px 15px;background:#fff!important;border:0!important}.md-editor.md-fullscreen-mode .md-footer{display:none}.md-editor.md-fullscreen-mode .md-input,.md-editor.md-fullscreen-mode .md-preview{margin:0 auto!important;height:100%!important;font-size:20px!important;padding:20px!important;color:#999;line-height:1.6em!important;resize:none!important;box-shadow:none!important;background:#fff!important;border:0!important}.md-editor.md-fullscreen-mode .md-preview{color:#333;overflow:auto}.md-editor.md-fullscreen-mode .md-input:focus,.md-editor.md-fullscreen-mode .md-input:hover{color:#333;background:#fff!important}.md-editor.md-fullscreen-mode .md-header{background:0 0;text-align:center;position:fixed;width:100%;top:20px}.md-editor.md-fullscreen-mode .btn-group{float:none}.md-editor.md-fullscreen-mode .btn{border:0;background:0 0;color:#b3b3b3}.md-editor.md-fullscreen-mode .btn.active,.md-editor.md-fullscreen-mode .btn:active,.md-editor.md-fullscreen-mode .btn:focus,.md-editor.md-fullscreen-mode .btn:hover{box-shadow:none;color:#333}.md-editor.md-fullscreen-mode .md-fullscreen-controls{position:absolute;top:20px;right:20px;text-align:right;z-index:1002;display:block}.md-editor.md-fullscreen-mode .md-fullscreen-controls a{color:#b3b3b3;clear:right;margin:10px;width:30px;height:30px;text-align:center}.md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover{color:#333;text-decoration:none}.md-editor.md-fullscreen-mode .md-editor{height:100%!important;position:relative}.md-editor .md-fullscreen-controls{display:none}.md-nooverflow{overflow:hidden;position:fixed;width:100%} -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/bootstrapTour/bootstrap-tour.min.css: -------------------------------------------------------------------------------- 1 | /* ======================================================================== 2 | * bootstrap-tour - v0.10.1 3 | * http://bootstraptour.com 4 | * ======================================================================== 5 | * Copyright 2012-2013 Ulrich Sossou 6 | * 7 | * ======================================================================== 8 | * Licensed under the Apache License, Version 2.0 (the "License"); 9 | * you may not use this file except in compliance with the License. 10 | * You may obtain a copy of the License at 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | * 14 | * Unless required by applicable law or agreed to in writing, software 15 | * distributed under the License is distributed on an "AS IS" BASIS, 16 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 17 | * See the License for the specific language governing permissions and 18 | * limitations under the License. 19 | * ======================================================================== 20 | */ 21 | 22 | .tour-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1100;background-color:#000;opacity:.8;filter:alpha(opacity=80)}.tour-step-backdrop{position:relative;z-index:1101;background:inherit}.tour-step-backdrop>td{position:relative;z-index:1101}.tour-step-background{position:absolute!important;z-index:1100;background:inherit;border-radius:6px}.popover[class*=tour-]{z-index:1100}.popover[class*=tour-] .popover-navigation{padding:9px 14px}.popover[class*=tour-] .popover-navigation [data-role=end]{float:right}.popover[class*=tour-] .popover-navigation [data-role=prev],.popover[class*=tour-] .popover-navigation [data-role=next],.popover[class*=tour-] .popover-navigation [data-role=end]{cursor:pointer}.popover[class*=tour-] .popover-navigation [data-role=prev].disabled,.popover[class*=tour-] .popover-navigation [data-role=next].disabled,.popover[class*=tour-] .popover-navigation [data-role=end].disabled{cursor:default}.popover[class*=tour-].orphan{position:fixed;margin-top:0}.popover[class*=tour-].orphan .arrow{display:none} -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/c3/c3.min.css: -------------------------------------------------------------------------------- 1 | .c3 svg{font:10px sans-serif;-webkit-tap-highlight-color:transparent}.c3 line,.c3 path{fill:none;stroke:#000}.c3 text{-webkit-user-select:none;-moz-user-select:none;user-select:none}.c3-bars path,.c3-event-rect,.c3-legend-item-tile,.c3-xgrid-focus,.c3-ygrid{shape-rendering:crispEdges}.c3-chart-arc path{stroke:#fff}.c3-chart-arc text{fill:#fff;font-size:13px}.c3-grid line{stroke:#aaa}.c3-grid text{fill:#aaa}.c3-xgrid,.c3-ygrid{stroke-dasharray:3 3}.c3-text.c3-empty{fill:gray;font-size:2em}.c3-line{stroke-width:1px}.c3-circle._expanded_{stroke-width:1px;stroke:#fff}.c3-selected-circle{fill:#fff;stroke-width:2px}.c3-bar{stroke-width:0}.c3-bar._expanded_{fill-opacity:.75}.c3-target.c3-focused{opacity:1}.c3-target.c3-focused path.c3-line,.c3-target.c3-focused path.c3-step{stroke-width:2px}.c3-target.c3-defocused{opacity:.3!important}.c3-region{fill:#4682b4;fill-opacity:.1}.c3-brush .extent{fill-opacity:.1}.c3-legend-item{font-size:12px}.c3-legend-item-hidden{opacity:.15}.c3-legend-background{opacity:.75;fill:#fff;stroke:#d3d3d3;stroke-width:1}.c3-title{font:14px sans-serif}.c3-tooltip-container{z-index:10}.c3-tooltip{border-collapse:collapse;border-spacing:0;background-color:#fff;empty-cells:show;-webkit-box-shadow:7px 7px 12px -9px #777;-moz-box-shadow:7px 7px 12px -9px #777;box-shadow:7px 7px 12px -9px #777;opacity:.9}.c3-tooltip tr{border:1px solid #CCC}.c3-tooltip th{background-color:#aaa;font-size:14px;padding:2px 5px;text-align:left;color:#FFF}.c3-tooltip td{font-size:13px;padding:3px 6px;background-color:#fff;border-left:1px dotted #999}.c3-tooltip td>span{display:inline-block;width:10px;height:10px;margin-right:6px}.c3-tooltip td.value{text-align:right}.c3-area{stroke-width:0;opacity:.2}.c3-chart-arcs-title{dominant-baseline:middle;font-size:1.3em}.c3-chart-arcs .c3-chart-arcs-background{fill:#e0e0e0;stroke:none}.c3-chart-arcs .c3-chart-arcs-gauge-unit{fill:#000;font-size:16px}.c3-chart-arcs .c3-chart-arcs-gauge-max,.c3-chart-arcs .c3-chart-arcs-gauge-min{fill:#777}.c3-chart-arc .c3-gauge-value{fill:#000} -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/chosen/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/chosen/chosen-sprite.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/chosen/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/chosen/chosen-sprite@2x.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/footable/fonts/footable.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/footable/fonts/footable.eot -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/footable/fonts/footable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/footable/fonts/footable.ttf -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/footable/fonts/footable.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/footable/fonts/footable.woff -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/iCheck/custom.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Square skin, green 2 | ----------------------------------- */ 3 | .icheckbox_square-green, 4 | .iradio_square-green { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 22px; 11 | height: 22px; 12 | background: url(green.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_square-green { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_square-green.hover { 21 | background-position: -24px 0; 22 | } 23 | .icheckbox_square-green.checked { 24 | background-position: -48px 0; 25 | } 26 | .icheckbox_square-green.disabled { 27 | background-position: -72px 0; 28 | cursor: default; 29 | } 30 | .icheckbox_square-green.checked.disabled { 31 | background-position: -96px 0; 32 | } 33 | 34 | .iradio_square-green { 35 | background-position: -120px 0; 36 | } 37 | .iradio_square-green.hover { 38 | background-position: -144px 0; 39 | } 40 | .iradio_square-green.checked { 41 | background-position: -168px 0; 42 | } 43 | .iradio_square-green.disabled { 44 | background-position: -192px 0; 45 | cursor: default; 46 | } 47 | .iradio_square-green.checked.disabled { 48 | background-position: -216px 0; 49 | } 50 | 51 | /* HiDPI support */ 52 | @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) { 53 | .icheckbox_square-green, 54 | .iradio_square-green { 55 | background-image: url(green@2x.png); 56 | -webkit-background-size: 240px 24px; 57 | background-size: 240px 24px; 58 | } 59 | } -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/iCheck/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/iCheck/green.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/iCheck/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/iCheck/green@2x.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/images/bootstrap-colorpicker/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/images/bootstrap-colorpicker/alpha-horizontal.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/images/bootstrap-colorpicker/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/images/bootstrap-colorpicker/alpha.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/images/bootstrap-colorpicker/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/images/bootstrap-colorpicker/hue-horizontal.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/images/bootstrap-colorpicker/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/images/bootstrap-colorpicker/hue.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/images/bootstrap-colorpicker/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/images/bootstrap-colorpicker/saturation.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/images/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/images/sprite-skin-flat.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/images/spritemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/images/spritemap.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/images/spritemap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/images/spritemap@2x.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/ionRangeSlider/ion.rangeSlider.skinFlat.css: -------------------------------------------------------------------------------- 1 | /* Ion.RangeSlider, Flat UI Skin 2 | // css version 1.8.5 3 | // by Denis Ineshin | ionden.com 4 | // ===================================================================================================================*/ 5 | 6 | /* ===================================================================================================================== 7 | // Skin details */ 8 | 9 | .irs-line-mid, 10 | .irs-line-left, 11 | .irs-line-right, 12 | .irs-diapason, 13 | .irs-slider { 14 | background: url(../images/sprite-skin-flat.png) repeat-x; 15 | } 16 | 17 | .irs { 18 | height: 40px; 19 | } 20 | .irs-with-grid { 21 | height: 60px; 22 | } 23 | .irs-line { 24 | height: 12px; top: 25px; 25 | } 26 | .irs-line-left { 27 | height: 12px; 28 | background-position: 0 -30px; 29 | } 30 | .irs-line-mid { 31 | height: 12px; 32 | background-position: 0 0; 33 | } 34 | .irs-line-right { 35 | height: 12px; 36 | background-position: 100% -30px; 37 | } 38 | 39 | .irs-diapason { 40 | height: 12px; top: 25px; 41 | background-position: 0 -60px; 42 | } 43 | 44 | .irs-slider { 45 | width: 16px; height: 18px; 46 | top: 22px; 47 | background-position: 0 -90px; 48 | } 49 | #irs-active-slider, .irs-slider:hover { 50 | background-position: 0 -120px; 51 | } 52 | 53 | .irs-min, .irs-max { 54 | color: #999; 55 | font-size: 10px; line-height: 1.333; 56 | text-shadow: none; 57 | top: 0; padding: 1px 3px; 58 | background: #e1e4e9; 59 | border-radius: 4px; 60 | } 61 | 62 | .irs-from, .irs-to, .irs-single { 63 | color: #fff; 64 | font-size: 10px; line-height: 1.333; 65 | text-shadow: none; 66 | padding: 1px 5px; 67 | background: #ed5565; 68 | border-radius: 4px; 69 | } 70 | .irs-from:after, .irs-to:after, .irs-single:after { 71 | position: absolute; display: block; content: ""; 72 | bottom: -6px; left: 50%; 73 | width: 0; height: 0; 74 | margin-left: -3px; 75 | overflow: hidden; 76 | border: 3px solid transparent; 77 | border-top-color: #ed5565; 78 | } 79 | 80 | 81 | .irs-grid-pol { 82 | background: #e1e4e9; 83 | } 84 | .irs-grid-text { 85 | color: #999; 86 | } 87 | 88 | .irs-disabled { 89 | } -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/animated-overlay.gif -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/jQueryUI/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/jsTree/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/jsTree/32px.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/jsTree/40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/jsTree/40px.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/jsTree/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/jsTree/throbber.gif -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/morris/morris-0.4.3.min.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1000;}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(255, 255, 255, 0.8);border:solid 2px rgba(230, 230, 230, 0.8);font-family:sans-serif;font-size:12px;text-align:center;}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0;} 2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0;} -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/slick/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/slick/ajax-loader.gif -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/slick/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/slick/fonts/slick.eot -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/slick/fonts/slick.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generated by Fontastic.me 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/slick/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/slick/fonts/slick.ttf -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/slick/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/css/plugins/slick/fonts/slick.woff -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/slick/slick.css: -------------------------------------------------------------------------------- 1 | /* Slider */ 2 | .slick-slider 3 | { 4 | position: relative; 5 | 6 | display: block; 7 | 8 | -moz-box-sizing: border-box; 9 | box-sizing: border-box; 10 | 11 | -webkit-user-select: none; 12 | -moz-user-select: none; 13 | -ms-user-select: none; 14 | user-select: none; 15 | 16 | -webkit-touch-callout: none; 17 | -khtml-user-select: none; 18 | -ms-touch-action: pan-y; 19 | touch-action: pan-y; 20 | -webkit-tap-highlight-color: transparent; 21 | } 22 | 23 | .slick-list 24 | { 25 | position: relative; 26 | 27 | display: block; 28 | overflow: hidden; 29 | 30 | margin: 0; 31 | padding: 0; 32 | } 33 | .slick-list:focus 34 | { 35 | outline: none; 36 | } 37 | .slick-list.dragging 38 | { 39 | cursor: pointer; 40 | cursor: hand; 41 | } 42 | 43 | .slick-slider .slick-track, 44 | .slick-slider .slick-list 45 | { 46 | -webkit-transform: translate3d(0, 0, 0); 47 | -moz-transform: translate3d(0, 0, 0); 48 | -ms-transform: translate3d(0, 0, 0); 49 | -o-transform: translate3d(0, 0, 0); 50 | transform: translate3d(0, 0, 0); 51 | } 52 | 53 | .slick-track 54 | { 55 | position: relative; 56 | top: 0; 57 | left: 0; 58 | 59 | display: block; 60 | } 61 | .slick-track:before, 62 | .slick-track:after 63 | { 64 | display: table; 65 | 66 | content: ''; 67 | } 68 | .slick-track:after 69 | { 70 | clear: both; 71 | } 72 | .slick-loading .slick-track 73 | { 74 | visibility: hidden; 75 | } 76 | 77 | .slick-slide 78 | { 79 | display: none; 80 | float: left; 81 | 82 | height: 100%; 83 | min-height: 1px; 84 | } 85 | [dir='rtl'] .slick-slide 86 | { 87 | float: right; 88 | } 89 | .slick-slide img 90 | { 91 | display: block; 92 | } 93 | .slick-slide.slick-loading img 94 | { 95 | display: none; 96 | } 97 | .slick-slide.dragging img 98 | { 99 | pointer-events: none; 100 | } 101 | .slick-initialized .slick-slide 102 | { 103 | display: block; 104 | } 105 | .slick-loading .slick-slide 106 | { 107 | visibility: hidden; 108 | } 109 | .slick-vertical .slick-slide 110 | { 111 | display: block; 112 | 113 | height: auto; 114 | 115 | border: 1px solid transparent; 116 | } 117 | .slick-arrow.slick-hidden { 118 | display: none; 119 | } -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/switchery/switchery.css: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Main stylesheet for Switchery. 4 | * http://abpetkov.github.io/switchery/ 5 | * 6 | */ 7 | 8 | .switchery { 9 | background-color: #fff; 10 | border: 1px solid #dfdfdf; 11 | border-radius: 20px; 12 | cursor: pointer; 13 | display: inline-block; 14 | height: 30px; 15 | position: relative; 16 | vertical-align: middle; 17 | width: 50px; 18 | 19 | -webkit-box-sizing: content-box; 20 | -moz-box-sizing: content-box; 21 | box-sizing: content-box; 22 | } 23 | 24 | .switchery > small { 25 | background: #fff; 26 | border-radius: 100%; 27 | box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); 28 | height: 30px; 29 | position: absolute; 30 | top: 0; 31 | width: 30px; 32 | } -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/css/plugins/touchspin/jquery.bootstrap-touchspin.min.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Bootstrap TouchSpin - v3.0.1 3 | * A mobile and touch friendly input spinner component for Bootstrap 3. 4 | * http://www.virtuosoft.eu/code/bootstrap-touchspin/ 5 | * 6 | * Made by István Ujj-Mészáros 7 | * Under Apache License v2.0 License 8 | */ 9 | 10 | .bootstrap-touchspin .input-group-btn-vertical{position:relative;white-space:nowrap;width:1%;vertical-align:middle;display:table-cell}.bootstrap-touchspin .input-group-btn-vertical>.btn{display:block;float:none;width:100%;max-width:100%;padding:8px 10px;margin-left:-1px;position:relative}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up{border-radius:0;border-top-right-radius:4px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{margin-top:-2px;border-radius:0;border-bottom-right-radius:4px}.bootstrap-touchspin .input-group-btn-vertical i{position:absolute;top:3px;left:5px;font-size:9px;font-weight:400} -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/img/0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/img/0.jpeg -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/img/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/img/Thumbs.db -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/img/addFeedBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/img/addFeedBack.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/js/ajaxfileupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/js/ajaxfileupload.js -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/js/demo/peity-demo.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | $("span.pie").peity("pie", { 3 | fill: ['#1ab394', '#d7d7d7', '#ffffff'] 4 | }) 5 | 6 | $(".line").peity("line",{ 7 | fill: '#1ab394', 8 | stroke:'#169c81', 9 | }) 10 | 11 | $(".bar").peity("bar", { 12 | fill: ["#1ab394", "#d7d7d7"] 13 | }) 14 | 15 | $(".bar_dashboard").peity("bar", { 16 | fill: ["#1ab394", "#d7d7d7"], 17 | width:100 18 | }) 19 | 20 | var updatingChart = $(".updating-chart").peity("line", { fill: '#1ab394',stroke:'#169c81', width: 64 }) 21 | 22 | setInterval(function() { 23 | var random = Math.round(Math.random() * 10) 24 | var values = updatingChart.text().split(",") 25 | values.shift() 26 | values.push(random) 27 | 28 | updatingChart 29 | .text(values.join(",")) 30 | .change() 31 | }, 1000); 32 | 33 | }); 34 | -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/js/demo/sparkline-demo.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | $("#sparkline1").sparkline([34, 43, 43, 35, 44, 32, 44, 52, 25], { 3 | type: 'line', 4 | lineColor: '#17997f', 5 | fillColor: '#1ab394', 6 | }); 7 | $("#sparkline2").sparkline([5, 6, 7, 2, 0, -4, -2, 4], { 8 | type: 'bar', 9 | barColor: '#1ab394', 10 | negBarColor: '#c6c6c6'}); 11 | 12 | $("#sparkline3").sparkline([1, 1, 2], { 13 | type: 'pie', 14 | sliceColors: ['#1ab394', '#b3b3b3', '#e4f0fb']}); 15 | 16 | $("#sparkline4").sparkline([34, 43, 43, 35, 44, 32, 15, 22, 46, 33, 86, 54, 73, 53, 12, 53, 23, 65, 23, 63, 53, 42, 34, 56, 76, 15, 54, 23, 44], { 17 | type: 'line', 18 | lineColor: '#17997f', 19 | fillColor: '#ffffff', 20 | }); 21 | 22 | $("#sparkline5").sparkline([1, 1, 0, 1, -1, -1, 1, -1, 0, 0, 1, 1], { 23 | type: 'tristate', 24 | posBarColor: '#1ab394', 25 | negBarColor: '#bfbfbf'}); 26 | 27 | 28 | $("#sparkline6").sparkline([4, 6, 7, 7, 4, 3, 2, 1, 4, 4, 5, 6, 3, 4, 5, 8, 7, 6, 9, 3, 2, 4, 1, 5, 6, 4, 3, 7, ], { 29 | type: 'discrete', 30 | lineColor: '#1ab394'}); 31 | 32 | $("#sparkline7").sparkline([52, 12, 44], { 33 | type: 'pie', 34 | height: '150px', 35 | sliceColors: ['#1ab394', '#b3b3b3', '#e4f0fb']}); 36 | 37 | $("#sparkline8").sparkline([5, 6, 7, 2, 0, 4, 2, 4, 5, 7, 2, 4, 12, 14, 4, 2, 14, 12, 7], { 38 | type: 'bar', 39 | barWidth: 8, 40 | height: '150px', 41 | barColor: '#1ab394', 42 | negBarColor: '#c6c6c6'}); 43 | 44 | $("#sparkline9").sparkline([34, 43, 43, 35, 44, 32, 15, 22, 46, 33, 86, 54, 73, 53, 12, 53, 23, 65, 23, 63, 53, 42, 34, 56, 76, 15, 54, 23, 44], { 45 | type: 'line', 46 | lineWidth: 1, 47 | height: '150px', 48 | lineColor: '#17997f', 49 | fillColor: '#ffffff', 50 | }); 51 | }); 52 | -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/js/plugins/flot/jquery.flot.symbol.js: -------------------------------------------------------------------------------- 1 | /* Flot plugin that adds some extra symbols for plotting points. 2 | 3 | Copyright (c) 2007-2014 IOLA and Ole Laursen. 4 | Licensed under the MIT license. 5 | 6 | The symbols are accessed as strings through the standard symbol options: 7 | 8 | series: { 9 | points: { 10 | symbol: "square" // or "diamond", "triangle", "cross" 11 | } 12 | } 13 | 14 | */ 15 | 16 | (function ($) { 17 | function processRawData(plot, series, datapoints) { 18 | // we normalize the area of each symbol so it is approximately the 19 | // same as a circle of the given radius 20 | 21 | var handlers = { 22 | square: function (ctx, x, y, radius, shadow) { 23 | // pi * r^2 = (2s)^2 => s = r * sqrt(pi)/2 24 | var size = radius * Math.sqrt(Math.PI) / 2; 25 | ctx.rect(x - size, y - size, size + size, size + size); 26 | }, 27 | diamond: function (ctx, x, y, radius, shadow) { 28 | // pi * r^2 = 2s^2 => s = r * sqrt(pi/2) 29 | var size = radius * Math.sqrt(Math.PI / 2); 30 | ctx.moveTo(x - size, y); 31 | ctx.lineTo(x, y - size); 32 | ctx.lineTo(x + size, y); 33 | ctx.lineTo(x, y + size); 34 | ctx.lineTo(x - size, y); 35 | }, 36 | triangle: function (ctx, x, y, radius, shadow) { 37 | // pi * r^2 = 1/2 * s^2 * sin (pi / 3) => s = r * sqrt(2 * pi / sin(pi / 3)) 38 | var size = radius * Math.sqrt(2 * Math.PI / Math.sin(Math.PI / 3)); 39 | var height = size * Math.sin(Math.PI / 3); 40 | ctx.moveTo(x - size/2, y + height/2); 41 | ctx.lineTo(x + size/2, y + height/2); 42 | if (!shadow) { 43 | ctx.lineTo(x, y - height/2); 44 | ctx.lineTo(x - size/2, y + height/2); 45 | } 46 | }, 47 | cross: function (ctx, x, y, radius, shadow) { 48 | // pi * r^2 = (2s)^2 => s = r * sqrt(pi)/2 49 | var size = radius * Math.sqrt(Math.PI) / 2; 50 | ctx.moveTo(x - size, y - size); 51 | ctx.lineTo(x + size, y + size); 52 | ctx.moveTo(x - size, y + size); 53 | ctx.lineTo(x + size, y - size); 54 | } 55 | }; 56 | 57 | var s = series.points.symbol; 58 | if (handlers[s]) 59 | series.points.symbol = handlers[s]; 60 | } 61 | 62 | function init(plot) { 63 | plot.hooks.processDatapoints.push(processRawData); 64 | } 65 | 66 | $.plot.plugins.push({ 67 | init: init, 68 | name: 'symbols', 69 | version: '1.0' 70 | }); 71 | })(jQuery); 72 | -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/js/plugins/gritter/images/gritter-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/js/plugins/gritter/images/gritter-light.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/js/plugins/gritter/images/gritter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/js/plugins/gritter/images/gritter.png -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/js/plugins/gritter/images/ie-spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/Contents/INSPINIA/js/plugins/gritter/images/ie-spacer.gif -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/js/plugins/idle-timer/idle-timer.min.js: -------------------------------------------------------------------------------- 1 | /*! Idle Timer v1.0.1 2014-03-21 | https://github.com/thorst/jquery-idletimer | (c) 2014 Paul Irish | Licensed MIT */ 2 | !function(a){a.idleTimer=function(b,c){var d;"object"==typeof b?(d=b,b=null):"number"==typeof b&&(d={timeout:b},b=null),c=c||document,d=a.extend({idle:!1,timeout:3e4,events:"mousemove keydown wheel DOMMouseScroll mousewheel mousedown touchstart touchmove MSPointerDown MSPointerMove"},d);var e=a(c),f=e.data("idleTimerObj")||{},g=function(b){var d=a.data(c,"idleTimerObj")||{};d.idle=!d.idle,d.olddate=+new Date;var e=a.Event((d.idle?"idle":"active")+".idleTimer");a(c).trigger(e,[c,a.extend({},d),b])},h=function(b){var d=a.data(c,"idleTimerObj")||{};if(null==d.remaining){if("mousemove"===b.type){if(b.pageX===d.pageX&&b.pageY===d.pageY)return;if("undefined"==typeof b.pageX&&"undefined"==typeof b.pageY)return;var e=+new Date-d.olddate;if(200>e)return}clearTimeout(d.tId),d.idle&&g(b),d.lastActive=+new Date,d.pageX=b.pageX,d.pageY=b.pageY,d.tId=setTimeout(g,d.timeout)}},i=function(){var b=a.data(c,"idleTimerObj")||{};b.idle=b.idleBackup,b.olddate=+new Date,b.lastActive=b.olddate,b.remaining=null,clearTimeout(b.tId),b.idle||(b.tId=setTimeout(g,b.timeout))},j=function(){var b=a.data(c,"idleTimerObj")||{};null==b.remaining&&(b.remaining=b.timeout-(+new Date-b.olddate),clearTimeout(b.tId))},k=function(){var b=a.data(c,"idleTimerObj")||{};null!=b.remaining&&(b.idle||(b.tId=setTimeout(g,b.remaining)),b.remaining=null)},l=function(){var b=a.data(c,"idleTimerObj")||{};clearTimeout(b.tId),e.removeData("idleTimerObj"),e.off("._idleTimer")},m=function(){var b=a.data(c,"idleTimerObj")||{};if(b.idle)return 0;if(null!=b.remaining)return b.remaining;var d=b.timeout-(+new Date-b.lastActive);return 0>d&&(d=0),d};if(null===b&&"undefined"!=typeof f.idle)return i(),e;if(null===b);else{if(null!==b&&"undefined"==typeof f.idle)return!1;if("destroy"===b)return l(),e;if("pause"===b)return j(),e;if("resume"===b)return k(),e;if("reset"===b)return i(),e;if("getRemainingTime"===b)return m();if("getElapsedTime"===b)return+new Date-f.olddate;if("getLastActiveTime"===b)return f.lastActive;if("isIdle"===b)return f.idle}return e.on(a.trim((d.events+" ").split(" ").join("._idleTimer ")),function(a){h(a)}),f=a.extend({},{olddate:+new Date,lastActive:+new Date,idle:d.idle,idleBackup:d.idle,timeout:d.timeout,remaining:null,tId:null,pageX:null,pageY:null}),f.idle||(f.tId=setTimeout(g,f.timeout)),a.data(c,"idleTimerObj",f),e},a.fn.idleTimer=function(b){return this[0]?a.idleTimer(b,this[0]):this}}(jQuery); -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/js/plugins/ladda/ladda.jquery.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Ladda for jQuery 3 | * http://lab.hakim.se/ladda 4 | * MIT licensed 5 | * 6 | * Copyright (C) 2015 Hakim El Hattab, http://hakim.se 7 | */ 8 | (function(t,e){if(void 0===e)return console.error("jQuery required for Ladda.jQuery");var i=[];e=e.extend(e,{ladda:function(e){"stopAll"===e&&t.stopAll()}}),e.fn=e.extend(e.fn,{ladda:function(n){var r=i.slice.call(arguments,1);return"bind"===n?(r.unshift(e(this).selector),t.bind.apply(t,r)):e(this).each(function(){var i,o=e(this);void 0===n?o.data("ladda",t.create(this)):(i=o.data("ladda"),i[n].apply(i,r))}),this}})})(this.Ladda,this.jQuery); -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/js/plugins/preetyTextDiff/jquery.pretty-text-diff.min.js: -------------------------------------------------------------------------------- 1 | // Generated by CoffeeScript 1.7.1 2 | 3 | /* 4 | @preserve jQuery.PrettyTextDiff 1.0.4 5 | See https://github.com/arnab/jQuery.PrettyTextDiff/ 6 | */ 7 | 8 | (function() { 9 | var $; 10 | 11 | $ = jQuery; 12 | 13 | $.fn.extend({ 14 | prettyTextDiff: function(options) { 15 | var dmp, settings; 16 | settings = { 17 | originalContainer: ".original", 18 | changedContainer: ".changed", 19 | diffContainer: ".diff", 20 | cleanup: true, 21 | debug: false 22 | }; 23 | settings = $.extend(settings, options); 24 | $.fn.prettyTextDiff.debug("Options: ", settings, settings); 25 | dmp = new diff_match_patch(); 26 | return this.each(function() { 27 | var changed, diff_as_html, diffs, original; 28 | if (settings.originalContent && settings.changedContent) { 29 | original = $('
').html(settings.originalContent).text(); 30 | changed = $('
').html(settings.changedContent).text(); 31 | } else { 32 | original = $(settings.originalContainer, this).text(); 33 | changed = $(settings.changedContainer, this).text(); 34 | } 35 | $.fn.prettyTextDiff.debug("Original text found: ", original, settings); 36 | $.fn.prettyTextDiff.debug("Changed text found: ", changed, settings); 37 | diffs = dmp.diff_main(original, changed); 38 | if (settings.cleanup) { 39 | dmp.diff_cleanupSemantic(diffs); 40 | } 41 | $.fn.prettyTextDiff.debug("Diffs: ", diffs, settings); 42 | diff_as_html = $.map(diffs, function(diff) { 43 | return $.fn.prettyTextDiff.createHTML(diff); 44 | }); 45 | $(settings.diffContainer, this).html(diff_as_html.join('')); 46 | return this; 47 | }); 48 | } 49 | }); 50 | 51 | $.fn.prettyTextDiff.debug = function(message, object, settings) { 52 | if (settings.debug) { 53 | return console.log(message, object); 54 | } 55 | }; 56 | 57 | $.fn.prettyTextDiff.createHTML = function(diff) { 58 | var data, html, operation, pattern_amp, pattern_gt, pattern_lt, pattern_para, text; 59 | html = []; 60 | pattern_amp = /&/g; 61 | pattern_lt = //g; 63 | pattern_para = /\n/g; 64 | operation = diff[0], data = diff[1]; 65 | text = data.replace(pattern_amp, '&').replace(pattern_lt, '<').replace(pattern_gt, '>').replace(pattern_para, '
'); 66 | switch (operation) { 67 | case DIFF_INSERT: 68 | return '' + text + ''; 69 | case DIFF_DELETE: 70 | return '' + text + ''; 71 | case DIFF_EQUAL: 72 | return '' + text + ''; 73 | } 74 | }; 75 | 76 | }).call(this); 77 | -------------------------------------------------------------------------------- /HTNResp/Contents/INSPINIA/js/plugins/video/responsible-video.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | var $allVideos = $("iframe[src^='http://player.vimeo.com'], iframe[src^='http://www.youtube.com'], object, embed"), 3 | $fluidEl = $("figure"); 4 | 5 | $allVideos.each(function() { 6 | $(this) 7 | // jQuery .data does not work on object/embed elements 8 | .attr('data-aspectRatio', this.height / this.width) 9 | .removeAttr('height') 10 | .removeAttr('width'); 11 | }); 12 | $(window).resize(function() { 13 | var newWidth = $fluidEl.width(); 14 | $allVideos.each(function() { 15 | var $el = $(this); 16 | $el 17 | .width(newWidth) 18 | .height(newWidth * $el.attr('data-aspectRatio')); 19 | }); 20 | }).resize(); 21 | }); -------------------------------------------------------------------------------- /HTNResp/Controllers/BaseController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace HTNResp.Controllers 8 | { 9 | public class BaseController : Controller 10 | { 11 | // 12 | // GET: /Base/ 13 | 14 | public virtual ActionResult Index() 15 | { 16 | return View(); 17 | } 18 | 19 | public virtual ActionResult UsageDetail() 20 | { 21 | return View(); 22 | } 23 | public virtual ActionResult Confirm() 24 | { 25 | return View(); 26 | } 27 | public virtual ActionResult Delete(int i) 28 | { 29 | return View(); 30 | } 31 | public virtual ActionResult Remove() 32 | { 33 | return View(); 34 | } 35 | 36 | public virtual ActionResult AjaxList() 37 | { 38 | return View(); 39 | } 40 | public virtual ActionResult Info(int i) 41 | { 42 | return View(); 43 | } 44 | 45 | public virtual ActionResult Modify() 46 | { 47 | return View(); 48 | } 49 | 50 | public virtual ActionResult Detail() 51 | { 52 | return View(); 53 | } 54 | 55 | public virtual ActionResult ProjectDetail() 56 | { 57 | return View(); 58 | } 59 | } 60 | 61 | } 62 | -------------------------------------------------------------------------------- /HTNResp/Controllers/ErrorController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace HTNResp.Controllers 8 | { 9 | public class ErrorController : Controller 10 | { 11 | public ActionResult Index(string error) 12 | { 13 | ViewData["Title"] = "WebSite 网站内部错误"; 14 | ViewData["Description"] = error; 15 | return View("Index"); 16 | } 17 | public ActionResult HttpError404(string error) 18 | { 19 | ViewData["Title"] = "HTTP 404- 无法找到文件"; 20 | ViewData["Description"] = error; 21 | return View("Index"); 22 | } 23 | public ActionResult HttpError500(string error) 24 | { 25 | ViewData["Title"] = "HTTP 500 - 内部服务器错误"; 26 | ViewData["Description"] = error; 27 | return View("Index"); 28 | } 29 | public ActionResult General(string error) 30 | { 31 | ViewData["Title"] = "HTTP 发生错误"; 32 | ViewData["Description"] = error; 33 | return View("Index"); 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /HTNResp/Controllers/IndexController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Data; 4 | using System.Linq; 5 | using System.Web; 6 | using System.Web.Mvc; 7 | using HTNResp.Codes; 8 | using HTNResp.Common; 9 | using Maticsoft.DBUtility; 10 | 11 | namespace HTNResp.Controllers 12 | { 13 | 14 | public class IndexController : Controller 15 | { 16 | // 17 | // GET: /Index/ 18 | [Login(Feedback=200)] 19 | public ActionResult Index() 20 | { 21 | DataTable dt = DbHelperSQL.Query("SELECT ( case when a.name = 'AccessTable' then '权限数据' "+ 22 | 23 | " when a.name = 'AdaptMedicineUse' then '适应症药物使用' " + 24 | 25 | " when a.name = 'AdaptSymptom' then '适应症诊断' " + 26 | 27 | " when a.name = 'ControlContent' then '输入框提示' " + 28 | 29 | " when a.name = 'DiagnoseList' then '诊断项列表' " + 30 | 31 | " when a.name = 'EvalGuid' then '评估指南' " + 32 | 33 | " when a.name = 'EvaluationContent' then '评估项内容' " + 34 | 35 | " when a.name = 'GrassRootsOralMedicine' then '基层口腔医学' " + 36 | 37 | " when a.name = 'MedicineProject' then '医药项目' " + 38 | 39 | " when a.name = 'NonMedicineCure' then '非药物临床治疗' " + 40 | 41 | " when a.name = 'PermissionTable' then '关联表' " + 42 | 43 | " when a.name = 'PrevensionProject' then '药物治疗' " + 44 | 45 | " when a.name = 'ProjectDictionary' then '评估字典项维护' " + 46 | 47 | " when a.name = 'SpecialPatientProcess' then '特殊人群高血压' " + 48 | 49 | " when a.name = 'SubMedicineProject' then '基层常见药物维护' " + 50 | 51 | " when a.name = 'SubtMedicineDetail' then '基层高血压用药参考方案及明细' " + 52 | 53 | " when a.name = 'User' then '用户old(已废除)' " + 54 | 55 | " when a.name = 'UserTable' then '用户列表' " + 56 | " else a.name end) as name, " + 57 | " b.rows FROM sysobjects AS a INNER JOIN sysindexes AS b ON a.id = b.id WHERE(a.type = 'u') AND(b.indid IN(0, 1)) ORDER BY a.name, b.rows DESC").Tables[0]; 58 | string bigData = ModelConvertHelper.ConvertToModel(dt); 59 | ViewBag.BigData = bigData; 60 | return View(); 61 | } 62 | 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /HTNResp/File/0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/File/0.jpeg -------------------------------------------------------------------------------- /HTNResp/File/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/File/Thumbs.db -------------------------------------------------------------------------------- /HTNResp/File/WechatIMG43.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/File/WechatIMG43.jpeg -------------------------------------------------------------------------------- /HTNResp/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="HTNResp.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /HTNResp/Global.asax.cs: -------------------------------------------------------------------------------- 1 | using HTNResp.Controllers; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Web; 6 | using System.Web.Http; 7 | using System.Web.Mvc; 8 | using System.Web.Routing; 9 | 10 | namespace HTNResp 11 | { 12 | // Note: For instructions on enabling IIS6 or IIS7 classic mode, 13 | // visit http://go.microsoft.com/?LinkId=9394801 14 | public class MvcApplication : System.Web.HttpApplication 15 | { 16 | protected void Application_Start() 17 | { 18 | AreaRegistration.RegisterAllAreas(); 19 | 20 | WebApiConfig.Register(GlobalConfiguration.Configuration); 21 | FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters); 22 | RouteConfig.RegisterRoutes(RouteTable.Routes); 23 | } 24 | protected void Application_Error(object sender, EventArgs e) 25 | { 26 | return; 27 | Exception exception = Server.GetLastError(); 28 | Response.Clear(); 29 | HttpException httpException = exception as HttpException; 30 | RouteData routeData = new RouteData(); 31 | routeData.Values.Add("controller", "Error"); 32 | if (httpException == null) 33 | { 34 | routeData.Values.Add("action", "Index"); 35 | } 36 | else //It's an Http Exception, Let's handle it. 37 | { 38 | switch (httpException.GetHttpCode()) 39 | { 40 | case 404: 41 | // Page not found. 42 | routeData.Values.Add("action", "HttpError404"); 43 | break; 44 | case 500: 45 | // Server error. 46 | routeData.Values.Add("action", "HttpError500"); 47 | break; 48 | // Here you can handle Views to other error codes. 49 | // I choose a General error template 50 | default: 51 | routeData.Values.Add("action", "General"); 52 | break; 53 | } 54 | } 55 | // Pass exception details to the target error View. 56 | routeData.Values.Add("error", exception.Message); 57 | // Clear the error on server. 58 | Server.ClearError(); 59 | // Call target Controller and pass the routeData. 60 | IController errorController = new ErrorController(); 61 | errorController.Execute(new RequestContext( 62 | new HttpContextWrapper(Context), routeData)); 63 | } 64 | } 65 | } -------------------------------------------------------------------------------- /HTNResp/HTNResp.Publish.xml: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /HTNResp/HTNResp.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ShowAllFiles 5 | false 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | CurrentPage 20 | True 21 | False 22 | False 23 | False 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | False 33 | True 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /HTNResp/Models/AdaptMedicineUse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace HTNResp.Models 7 | { 8 | public class AdaptMedicineUse 9 | { 10 | public int ID { get; set; } 11 | public string GroupName { get; set; } 12 | public string GroupNameDetail { get; set; } 13 | public string Symptom { get; set; } 14 | public string SymptomType { get; set; } 15 | } 16 | } -------------------------------------------------------------------------------- /HTNResp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("HTNResp")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("HTNResp")] 13 | [assembly: AssemblyCopyright("Copyright © 2018")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("05f67a6f-eaa5-47c3-80a7-8ab1642826b3")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Revision and Build Numbers 33 | // by using the '*' as shown below: 34 | [assembly: AssemblyVersion("1.0.0.0")] 35 | [assembly: AssemblyFileVersion("1.0.0.0")] 36 | -------------------------------------------------------------------------------- /HTNResp/Views/Error/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | 5 | 6 | 7 | 8 | 9 | 10 | Index 11 | 12 | 13 |
14 | test 15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /HTNResp/Views/Home/Illegal.cshtml: -------------------------------------------------------------------------------- 1 |  2 |
3 |

警告

4 |

您的权限不足访问此页

5 | 6 |
7 | 如需访问请联系管理员 8 |
9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /HTNResp/Views/Index/Index.cshtml: -------------------------------------------------------------------------------- 1 | 
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | 11 |
12 | 13 | 14 |
15 | 16 | 17 | @section script { 18 | 58 | } -------------------------------------------------------------------------------- /HTNResp/Views/Web.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 |
7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 38 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /HTNResp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /HTNResp/Web.Debug.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 17 | 18 | 29 | 30 | -------------------------------------------------------------------------------- /HTNResp/Web.Release.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 17 | 18 | 19 | 30 | 31 | -------------------------------------------------------------------------------- /HTNResp/Web.config: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /HTNResp/bin/COM.Excel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/COM.Excel.dll -------------------------------------------------------------------------------- /HTNResp/bin/Excel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/Excel.dll -------------------------------------------------------------------------------- /HTNResp/bin/HTNResp.BLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/HTNResp.BLL.dll -------------------------------------------------------------------------------- /HTNResp/bin/HTNResp.BLL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/HTNResp.BLL.pdb -------------------------------------------------------------------------------- /HTNResp/bin/HTNResp.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/HTNResp.Common.dll -------------------------------------------------------------------------------- /HTNResp/bin/HTNResp.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/HTNResp.Common.pdb -------------------------------------------------------------------------------- /HTNResp/bin/HTNResp.DAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/HTNResp.DAL.dll -------------------------------------------------------------------------------- /HTNResp/bin/HTNResp.DAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/HTNResp.DAL.pdb -------------------------------------------------------------------------------- /HTNResp/bin/HTNResp.DBUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/HTNResp.DBUtility.dll -------------------------------------------------------------------------------- /HTNResp/bin/HTNResp.DBUtility.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/HTNResp.DBUtility.pdb -------------------------------------------------------------------------------- /HTNResp/bin/HTNResp.Model.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/HTNResp.Model.dll -------------------------------------------------------------------------------- /HTNResp/bin/HTNResp.Model.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/HTNResp.Model.pdb -------------------------------------------------------------------------------- /HTNResp/bin/HTNResp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/HTNResp.dll -------------------------------------------------------------------------------- /HTNResp/bin/HTNResp.dll.config: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /HTNResp/bin/HTNResp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/HTNResp.pdb -------------------------------------------------------------------------------- /HTNResp/bin/IBatisNet.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/IBatisNet.Common.dll -------------------------------------------------------------------------------- /HTNResp/bin/IBatisNet.DataMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/IBatisNet.DataMapper.dll -------------------------------------------------------------------------------- /HTNResp/bin/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /HTNResp/bin/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/MySql.Data.dll -------------------------------------------------------------------------------- /HTNResp/bin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /HTNResp/bin/OWC10Chart.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/OWC10Chart.dll -------------------------------------------------------------------------------- /HTNResp/bin/OpenSmtp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/OpenSmtp.dll -------------------------------------------------------------------------------- /HTNResp/bin/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/System.Data.SQLite.dll -------------------------------------------------------------------------------- /HTNResp/bin/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /HTNResp/bin/System.Net.Http.WebRequest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/System.Net.Http.WebRequest.dll -------------------------------------------------------------------------------- /HTNResp/bin/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/System.Net.Http.dll -------------------------------------------------------------------------------- /HTNResp/bin/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/System.Web.Helpers.dll -------------------------------------------------------------------------------- /HTNResp/bin/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /HTNResp/bin/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/System.Web.Http.dll -------------------------------------------------------------------------------- /HTNResp/bin/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/System.Web.Mvc.dll -------------------------------------------------------------------------------- /HTNResp/bin/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/System.Web.Razor.dll -------------------------------------------------------------------------------- /HTNResp/bin/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /HTNResp/bin/System.Web.WebPages.Deployment.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | System.Web.WebPages.Deployment 5 | 6 | 7 | 8 | Provides a registration point for pre-application start code for Web Pages deployment. 9 | 10 | 11 | Registers pre-application start code for Web Pages deployment. 12 | 13 | 14 | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. 15 | 16 | 17 | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. 18 | 19 | 20 | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. 21 | 22 | 23 | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. 24 | 25 | 26 | The path of the root directory for the application. 27 | 28 | 29 | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. 30 | 31 | 32 | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. 33 | 34 | 35 | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. 36 | 37 | 38 | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. 39 | 40 | 41 | -------------------------------------------------------------------------------- /HTNResp/bin/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /HTNResp/bin/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/bin/System.Web.WebPages.dll -------------------------------------------------------------------------------- /HTNResp/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /HTNResp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /HTNResp/obj/Debug/HTNResp.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/obj/Debug/HTNResp.csproj.CopyComplete -------------------------------------------------------------------------------- /HTNResp/obj/Debug/HTNResp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 86f5383c66688b49c361f8c4fee3e2402fb913c0 2 | -------------------------------------------------------------------------------- /HTNResp/obj/Debug/HTNResp.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/obj/Debug/HTNResp.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /HTNResp/obj/Debug/HTNResp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/obj/Debug/HTNResp.dll -------------------------------------------------------------------------------- /HTNResp/obj/Debug/HTNResp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/obj/Debug/HTNResp.pdb -------------------------------------------------------------------------------- /HTNResp/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/HTNResp/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /HTNResp/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Model/Access.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Model/Access.cs -------------------------------------------------------------------------------- /Model/AdaptMedicineUse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace HTNResp.Model 3 | { 4 | /// 5 | /// AdaptMedicineUse:实体类(属性说明自动提取数据库字段的描述信息) 6 | /// 7 | [Serializable] 8 | public partial class AdaptMedicineUse 9 | { 10 | public AdaptMedicineUse() 11 | {} 12 | #region Model 13 | private int _id; 14 | private string _groupname; 15 | private string _groupnamedetail; 16 | private string _symptom; 17 | private string _symptomtype; 18 | private int? _evalguidid; 19 | /// 20 | /// 编号 21 | /// 22 | public int ID 23 | { 24 | set{ _id=value;} 25 | get{return _id;} 26 | } 27 | /// 28 | /// 类名 29 | /// 30 | public string GroupName 31 | { 32 | set{ _groupname=value;} 33 | get{return _groupname;} 34 | } 35 | /// 36 | /// 详细类名 37 | /// 38 | public string GroupNameDetail 39 | { 40 | set{ _groupnamedetail=value;} 41 | get{return _groupnamedetail;} 42 | } 43 | /// 44 | /// 症状 45 | /// 46 | public string Symptom 47 | { 48 | set{ _symptom=value;} 49 | get{return _symptom;} 50 | } 51 | /// 52 | /// 症状类别 53 | /// 54 | public string SymptomType 55 | { 56 | set{ _symptomtype=value;} 57 | get{return _symptomtype;} 58 | } 59 | /// 60 | /// 评估指南ID 61 | /// 62 | public int? EvalGuidId 63 | { 64 | set{ _evalguidid=value;} 65 | get{return _evalguidid;} 66 | } 67 | #endregion Model 68 | 69 | } 70 | } 71 | 72 | -------------------------------------------------------------------------------- /Model/AdaptSymptom.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace HTNResp.Model 3 | { 4 | /// 5 | /// AdaptSymptom:实体类(属性说明自动提取数据库字段的描述信息) 6 | /// 7 | [Serializable] 8 | public partial class AdaptSymptom 9 | { 10 | public AdaptSymptom() 11 | {} 12 | #region Model 13 | private int _id; 14 | private string _decisionrule; 15 | private string _contents; 16 | private string _sex; 17 | private int? _status; 18 | private int? _sort; 19 | private string _separator; 20 | private int? _typename; 21 | private string _remark; 22 | private int? _evalguidid; 23 | /// 24 | /// 编号 25 | /// 26 | public int ID 27 | { 28 | set{ _id=value;} 29 | get{return _id;} 30 | } 31 | /// 32 | /// 判断规则 33 | /// 34 | public string DecisionRule 35 | { 36 | set{ _decisionrule=value;} 37 | get{return _decisionrule;} 38 | } 39 | /// 40 | /// 评估内容 41 | /// 42 | public string Contents 43 | { 44 | set{ _contents=value;} 45 | get{return _contents;} 46 | } 47 | /// 48 | /// 性别 49 | /// 50 | public string Sex 51 | { 52 | set{ _sex=value;} 53 | get{return _sex;} 54 | } 55 | /// 56 | /// 标记 57 | /// 58 | public int? Status 59 | { 60 | set{ _status=value;} 61 | get{return _status;} 62 | } 63 | /// 64 | /// 显示顺序 65 | /// 66 | public int? Sort 67 | { 68 | set{ _sort=value;} 69 | get{return _sort;} 70 | } 71 | /// 72 | /// 分隔符 73 | /// 74 | public string Separator 75 | { 76 | set{ _separator=value;} 77 | get{return _separator;} 78 | } 79 | /// 80 | /// 类别 81 | /// 82 | public int? TypeName 83 | { 84 | set{ _typename=value;} 85 | get{return _typename;} 86 | } 87 | /// 88 | /// 说明 89 | /// 90 | public string Remark 91 | { 92 | set{ _remark=value;} 93 | get{return _remark;} 94 | } 95 | /// 96 | /// 97 | /// 98 | public int? EvalGuidId 99 | { 100 | set{ _evalguidid=value;} 101 | get{return _evalguidid;} 102 | } 103 | #endregion Model 104 | 105 | } 106 | } 107 | 108 | -------------------------------------------------------------------------------- /Model/ControlContent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace HTNResp.Model 3 | { 4 | /// 5 | /// ControlContent:实体类(属性说明自动提取数据库字段的描述信息) 6 | /// 7 | [Serializable] 8 | public partial class ControlContent 9 | { 10 | public ControlContent() 11 | {} 12 | #region Model 13 | private string _controlname; 14 | private string _title; 15 | private string _remark; 16 | private string _controltype; 17 | /// 18 | /// 控件名称 19 | /// 20 | public string ControlName 21 | { 22 | set{ _controlname=value;} 23 | get{return _controlname;} 24 | } 25 | /// 26 | /// 标题 27 | /// 28 | public string Title 29 | { 30 | set{ _title=value;} 31 | get{return _title;} 32 | } 33 | /// 34 | /// 说明 35 | /// 36 | public string Remark 37 | { 38 | set{ _remark=value;} 39 | get{return _remark;} 40 | } 41 | /// 42 | /// 控件类型 43 | /// 44 | public string ControlType 45 | { 46 | set{ _controltype=value;} 47 | get{return _controltype;} 48 | } 49 | #endregion Model 50 | 51 | } 52 | } 53 | 54 | -------------------------------------------------------------------------------- /Model/DiagnoseList.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace HTNResp.Model 3 | { 4 | /// 5 | /// DiagnoseList:实体类(属性说明自动提取数据库字段的描述信息) 6 | /// 7 | [Serializable] 8 | public partial class DiagnoseList 9 | { 10 | public DiagnoseList() 11 | {} 12 | #region Model 13 | private int _id; 14 | private string _decisionrule; 15 | private string _name; 16 | private string _sex; 17 | private string _description; 18 | private int? _status; 19 | private int? _evalguidid; 20 | /// 21 | /// 编号 22 | /// 23 | public int ID 24 | { 25 | set{ _id=value;} 26 | get{return _id;} 27 | } 28 | /// 29 | /// 判断规则 30 | /// 31 | public string DecisionRule 32 | { 33 | set{ _decisionrule=value;} 34 | get{return _decisionrule;} 35 | } 36 | /// 37 | /// 名称 38 | /// 39 | public string Name 40 | { 41 | set{ _name=value;} 42 | get{return _name;} 43 | } 44 | /// 45 | /// 性别 46 | /// 47 | public string Sex 48 | { 49 | set{ _sex=value;} 50 | get{return _sex;} 51 | } 52 | /// 53 | /// 描述 54 | /// 55 | public string Description 56 | { 57 | set{ _description=value;} 58 | get{return _description;} 59 | } 60 | /// 61 | /// 标记 62 | /// 63 | public int? Status 64 | { 65 | set{ _status=value;} 66 | get{return _status;} 67 | } 68 | /// 69 | /// 评估指南 70 | /// 71 | public int? EvalGuidId 72 | { 73 | set{ _evalguidid=value;} 74 | get{return _evalguidid;} 75 | } 76 | #endregion Model 77 | 78 | } 79 | } 80 | 81 | -------------------------------------------------------------------------------- /Model/EvalGuid.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace HTNResp.Model 3 | { 4 | /// 5 | /// EvalGuid:实体类(属性说明自动提取数据库字段的描述信息) 6 | /// 7 | [Serializable] 8 | public partial class EvalGuid 9 | { 10 | public EvalGuid() 11 | {} 12 | #region Model 13 | private int _id; 14 | private string _guidname; 15 | /// 16 | /// 17 | /// 18 | public int ID 19 | { 20 | set{ _id=value;} 21 | get{return _id;} 22 | } 23 | /// 24 | /// 25 | /// 26 | public string GuidName 27 | { 28 | set{ _guidname=value;} 29 | get{return _guidname;} 30 | } 31 | #endregion Model 32 | 33 | } 34 | } 35 | 36 | -------------------------------------------------------------------------------- /Model/EvaluationContent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace HTNResp.Model 3 | { 4 | /// 5 | /// EvaluationContent:实体类(属性说明自动提取数据库字段的描述信息) 6 | /// 7 | [Serializable] 8 | public partial class EvaluationContent 9 | { 10 | public EvaluationContent() 11 | {} 12 | #region Model 13 | private int _id; 14 | private string _decisionrule; 15 | private string _contents; 16 | private string _sex; 17 | private int? _status; 18 | private int? _sort; 19 | private string _separator; 20 | private int? _typename; 21 | private string _remark; 22 | private int? _evalguidid; 23 | /// 24 | /// 编号 25 | /// 26 | public int ID 27 | { 28 | set{ _id=value;} 29 | get{return _id;} 30 | } 31 | /// 32 | /// 判断规则 33 | /// 34 | public string DecisionRule 35 | { 36 | set{ _decisionrule=value;} 37 | get{return _decisionrule;} 38 | } 39 | /// 40 | /// 评估内容 41 | /// 42 | public string Contents 43 | { 44 | set{ _contents=value;} 45 | get{return _contents;} 46 | } 47 | /// 48 | /// 性别 49 | /// 50 | public string Sex 51 | { 52 | set{ _sex=value;} 53 | get{return _sex;} 54 | } 55 | /// 56 | /// 标记 57 | /// 58 | public int? Status 59 | { 60 | set{ _status=value;} 61 | get{return _status;} 62 | } 63 | /// 64 | /// 显示顺序 65 | /// 66 | public int? Sort 67 | { 68 | set{ _sort=value;} 69 | get{return _sort;} 70 | } 71 | /// 72 | /// 分隔符 73 | /// 74 | public string Separator 75 | { 76 | set{ _separator=value;} 77 | get{return _separator;} 78 | } 79 | /// 80 | /// 类别 81 | /// 82 | public int? TypeName 83 | { 84 | set{ _typename=value;} 85 | get{return _typename;} 86 | } 87 | /// 88 | /// 说明 89 | /// 90 | public string Remark 91 | { 92 | set{ _remark=value;} 93 | get{return _remark;} 94 | } 95 | /// 96 | /// 97 | /// 98 | public int? EvalGuidId 99 | { 100 | set{ _evalguidid=value;} 101 | get{return _evalguidid;} 102 | } 103 | #endregion Model 104 | 105 | } 106 | } 107 | 108 | -------------------------------------------------------------------------------- /Model/GrassRootsOralMedicine.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace HTNResp.Model 3 | { 4 | /// 5 | /// GrassRootsOralMedicine:实体类(属性说明自动提取数据库字段的描述信息) 6 | /// 7 | [Serializable] 8 | public partial class GrassRootsOralMedicine 9 | { 10 | public GrassRootsOralMedicine() 11 | {} 12 | #region Model 13 | private int _id; 14 | private string _commonname; 15 | private string _dose; 16 | private string _usage; 17 | private string _indications; 18 | private string _contraindications; 19 | private string _adversereaction; 20 | private string _classname; 21 | private string _classcode; 22 | private string _remark; 23 | private string _effectcategory; 24 | private string _classnamedetail; 25 | /// 26 | /// 编号 27 | /// 28 | public int ID 29 | { 30 | set{ _id=value;} 31 | get{return _id;} 32 | } 33 | /// 34 | /// 通用名 35 | /// 36 | public string CommonName 37 | { 38 | set{ _commonname=value;} 39 | get{return _commonname;} 40 | } 41 | /// 42 | /// 每次剂量 43 | /// 44 | public string Dose 45 | { 46 | set{ _dose=value;} 47 | get{return _dose;} 48 | } 49 | /// 50 | /// 每日次 51 | /// 52 | public string Usage 53 | { 54 | set{ _usage=value;} 55 | get{return _usage;} 56 | } 57 | /// 58 | /// 适应症 59 | /// 60 | public string Indications 61 | { 62 | set{ _indications=value;} 63 | get{return _indications;} 64 | } 65 | /// 66 | /// 禁忌症 67 | /// 68 | public string Contraindications 69 | { 70 | set{ _contraindications=value;} 71 | get{return _contraindications;} 72 | } 73 | /// 74 | /// 主要不良反应 75 | /// 76 | public string AdverseReaction 77 | { 78 | set{ _adversereaction=value;} 79 | get{return _adversereaction;} 80 | } 81 | /// 82 | /// 类名 83 | /// 84 | public string ClassName 85 | { 86 | set{ _classname=value;} 87 | get{return _classname;} 88 | } 89 | /// 90 | /// 类别 91 | /// 92 | public string ClassCode 93 | { 94 | set{ _classcode=value;} 95 | get{return _classcode;} 96 | } 97 | /// 98 | /// 备注 99 | /// 100 | public string Remark 101 | { 102 | set{ _remark=value;} 103 | get{return _remark;} 104 | } 105 | /// 106 | /// 效果类别 107 | /// 108 | public string EffectCategory 109 | { 110 | set{ _effectcategory=value;} 111 | get{return _effectcategory;} 112 | } 113 | /// 114 | /// 详细类名 115 | /// 116 | public string ClassNameDetail 117 | { 118 | set{ _classnamedetail=value;} 119 | get{return _classnamedetail;} 120 | } 121 | #endregion Model 122 | 123 | } 124 | } 125 | 126 | -------------------------------------------------------------------------------- /Model/Login.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace HTNResp.Model 3 | { 4 | /// 5 | /// Login:实体类(属性说明自动提取数据库字段的描述信息) 6 | /// 7 | [Serializable] 8 | public partial class Login 9 | { 10 | public Login() 11 | { } 12 | #region Model 13 | private string _username; 14 | private string _name; 15 | private string _password; 16 | private string _permissionlevel; 17 | /// 18 | /// 19 | /// 20 | public string Username 21 | { 22 | set { _username = value; } 23 | get { return _username; } 24 | } 25 | /// 26 | /// 27 | /// 28 | public string Name 29 | { 30 | set { _name = value; } 31 | get { return _name; } 32 | } 33 | /// 34 | /// 35 | /// 36 | public string Password 37 | { 38 | set { _password = value; } 39 | get { return _password; } 40 | } 41 | /// 42 | /// 43 | /// 44 | public string PermissionLevel 45 | { 46 | set { _permissionlevel = value; } 47 | get { return _permissionlevel; } 48 | } 49 | #endregion Model 50 | 51 | } 52 | } 53 | 54 | -------------------------------------------------------------------------------- /Model/MedicineProject.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace HTNResp.Model 3 | { 4 | /// 5 | /// MedicineProject:实体类(属性说明自动提取数据库字段的描述信息) 6 | /// 7 | [Serializable] 8 | public partial class MedicineProject 9 | { 10 | public MedicineProject() 11 | {} 12 | #region Model 13 | private int _id; 14 | private string _bplevel; 15 | private string _projectcontent; 16 | private int? _projectcode; 17 | private int? _evalguidid; 18 | /// 19 | /// 编号 20 | /// 21 | public int ID 22 | { 23 | set{ _id=value;} 24 | get{return _id;} 25 | } 26 | /// 27 | /// 血压级别 28 | /// 29 | public string BPLevel 30 | { 31 | set{ _bplevel=value;} 32 | get{return _bplevel;} 33 | } 34 | /// 35 | /// 药物方案 36 | /// 37 | public string ProjectContent 38 | { 39 | set{ _projectcontent=value;} 40 | get{return _projectcontent;} 41 | } 42 | /// 43 | /// 方案编号 44 | /// 45 | public int? ProjectCode 46 | { 47 | set{ _projectcode=value;} 48 | get{return _projectcode;} 49 | } 50 | /// 51 | /// 52 | /// 53 | public int? EvalGuidId 54 | { 55 | set{ _evalguidid=value;} 56 | get{return _evalguidid;} 57 | } 58 | #endregion Model 59 | 60 | } 61 | } 62 | 63 | -------------------------------------------------------------------------------- /Model/Model.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 7.10.3077 5 | Debug 6 | AnyCPU 7 | 8 | 9 | 10 | 11 | 12 | 13 | 0 14 | ShowAllFiles 15 | 0 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | zh-CN 29 | true 30 | 31 | 32 | false 33 | false 34 | false 35 | false 36 | false 37 | 38 | 39 | Project 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | false 51 | 52 | 53 | false 54 | false 55 | false 56 | false 57 | false 58 | 59 | 60 | Project 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | false 72 | 73 | -------------------------------------------------------------------------------- /Model/NonMedicineCure.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace HTNResp.Model 3 | { 4 | /// 5 | /// NonMedicineCure:实体类(属性说明自动提取数据库字段的描述信息) 6 | /// 7 | [Serializable] 8 | public partial class NonMedicineCure 9 | { 10 | public NonMedicineCure() 11 | {} 12 | #region Model 13 | private int _id; 14 | private string _decisionrule; 15 | private string _contents; 16 | private string _aim; 17 | private string _measure; 18 | private int? _status; 19 | private int? _evalguidid; 20 | /// 21 | /// 编号 22 | /// 23 | public int ID 24 | { 25 | set{ _id=value;} 26 | get{return _id;} 27 | } 28 | /// 29 | /// 判断规则 30 | /// 31 | public string DecisionRule 32 | { 33 | set{ _decisionrule=value;} 34 | get{return _decisionrule;} 35 | } 36 | /// 37 | /// 内容 38 | /// 39 | public string Contents 40 | { 41 | set{ _contents=value;} 42 | get{return _contents;} 43 | } 44 | /// 45 | /// 目标 46 | /// 47 | public string Aim 48 | { 49 | set{ _aim=value;} 50 | get{return _aim;} 51 | } 52 | /// 53 | /// 措施 54 | /// 55 | public string Measure 56 | { 57 | set{ _measure=value;} 58 | get{return _measure;} 59 | } 60 | /// 61 | /// 标记 62 | /// 63 | public int? Status 64 | { 65 | set{ _status=value;} 66 | get{return _status;} 67 | } 68 | /// 69 | /// 70 | /// 71 | public int? EvalGuidId 72 | { 73 | set{ _evalguidid=value;} 74 | get{return _evalguidid;} 75 | } 76 | #endregion Model 77 | 78 | } 79 | } 80 | 81 | -------------------------------------------------------------------------------- /Model/Permission.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace HTNResp.Model 3 | { 4 | /// 5 | /// Permission:实体类(属性说明自动提取数据库字段的描述信息) 6 | /// 7 | [Serializable] 8 | public partial class Permission 9 | { 10 | public Permission() 11 | { } 12 | #region Model 13 | private string _tablename; 14 | private int? _permissionlevel; 15 | private string _tableroute; 16 | /// 17 | /// 18 | /// 19 | public string TableName 20 | { 21 | set { _tablename = value; } 22 | get { return _tablename; } 23 | } 24 | /// 25 | /// 26 | /// 27 | public int? PermissionLevel 28 | { 29 | set { _permissionlevel = value; } 30 | get { return _permissionlevel; } 31 | } 32 | /// 33 | /// 34 | /// 35 | public string TableRoute 36 | { 37 | set { _tableroute = value; } 38 | get { return _tableroute; } 39 | } 40 | #endregion Model 41 | 42 | } 43 | } 44 | 45 | -------------------------------------------------------------------------------- /Model/PermissionTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Model/PermissionTable.cs -------------------------------------------------------------------------------- /Model/PrevensionProject.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace HTNResp.Model 3 | { 4 | /// 5 | /// PrevensionProject:实体类(属性说明自动提取数据库字段的描述信息) 6 | /// 7 | [Serializable] 8 | public partial class PrevensionProject 9 | { 10 | public PrevensionProject() 11 | {} 12 | #region Model 13 | private int _id; 14 | private string _projectname; 15 | private string _dangerousgroup; 16 | private string _decisionrule; 17 | private string _adaptscope; 18 | private string _measure; 19 | private string _aim; 20 | private int? _status; 21 | private int? _evalguidid; 22 | /// 23 | /// 方案编号 24 | /// 25 | public int ID 26 | { 27 | set{ _id=value;} 28 | get{return _id;} 29 | } 30 | /// 31 | /// 方案名称 32 | /// 33 | public string ProjectName 34 | { 35 | set{ _projectname=value;} 36 | get{return _projectname;} 37 | } 38 | /// 39 | /// 危险分组 40 | /// 41 | public string DangerousGroup 42 | { 43 | set{ _dangerousgroup=value;} 44 | get{return _dangerousgroup;} 45 | } 46 | /// 47 | /// 判断规则 48 | /// 49 | public string DecisionRule 50 | { 51 | set{ _decisionrule=value;} 52 | get{return _decisionrule;} 53 | } 54 | /// 55 | /// 适用范围 56 | /// 57 | public string AdaptScope 58 | { 59 | set{ _adaptscope=value;} 60 | get{return _adaptscope;} 61 | } 62 | /// 63 | /// 防治措施 64 | /// 65 | public string Measure 66 | { 67 | set{ _measure=value;} 68 | get{return _measure;} 69 | } 70 | /// 71 | /// 控制目标 72 | /// 73 | public string Aim 74 | { 75 | set{ _aim=value;} 76 | get{return _aim;} 77 | } 78 | /// 79 | /// 标记 80 | /// 81 | public int? Status 82 | { 83 | set{ _status=value;} 84 | get{return _status;} 85 | } 86 | /// 87 | /// 88 | /// 89 | public int? EvalGuidId 90 | { 91 | set{ _evalguidid=value;} 92 | get{return _evalguidid;} 93 | } 94 | #endregion Model 95 | 96 | } 97 | } 98 | 99 | -------------------------------------------------------------------------------- /Model/ProjectDictionary.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace HTNResp.Model 3 | { 4 | /// 5 | /// ProjectDictionary:实体类(属性说明自动提取数据库字段的描述信息) 6 | /// 7 | [Serializable] 8 | public partial class ProjectDictionary 9 | { 10 | public ProjectDictionary() 11 | { } 12 | #region Model 13 | private int _id; 14 | private string _projectname; 15 | private string _projectcode; 16 | private string _projecttype; 17 | /// 18 | /// 编号 19 | /// 20 | public int ID 21 | { 22 | set { _id = value; } 23 | get { return _id; } 24 | } 25 | /// 26 | /// 项目名称 27 | /// 28 | public string ProjectName 29 | { 30 | set { _projectname = value; } 31 | get { return _projectname; } 32 | } 33 | /// 34 | /// 项目代码 35 | /// 36 | public string ProjectCode 37 | { 38 | set { _projectcode = value; } 39 | get { return _projectcode; } 40 | } 41 | /// 42 | /// 43 | /// 44 | public string ProjectType 45 | { 46 | set { _projecttype = value; } 47 | get { return _projecttype; } 48 | } 49 | #endregion Model 50 | 51 | } 52 | } 53 | 54 | -------------------------------------------------------------------------------- /Model/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | [assembly: AssemblyTitle("数据实体层-Maticsoft.Net.SystemFramework")] 6 | [assembly: AssemblyDescription("Maticsoft.Net.SystemFramework示例项目源码")] 7 | [assembly: AssemblyConfiguration("")] 8 | [assembly: AssemblyCompany("李天平")] 9 | [assembly: AssemblyProduct("http://www.maticsoft.com")] 10 | [assembly: AssemblyCopyright("Copyright (C)Maticsoft 2004-2010")] 11 | [assembly: AssemblyTrademark("")] 12 | [assembly: AssemblyCulture("")] 13 | [assembly: AssemblyVersion("2.0.0.0")] 14 | [assembly: AssemblyFileVersion("2.0.0.0")] 15 | -------------------------------------------------------------------------------- /Model/SpecialPatientProcess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace HTNResp.Model 3 | { 4 | /// 5 | /// SpecialPatientProcess:实体类(属性说明自动提取数据库字段的描述信息) 6 | /// 7 | [Serializable] 8 | public partial class SpecialPatientProcess 9 | { 10 | public SpecialPatientProcess() 11 | {} 12 | #region Model 13 | private int _id; 14 | private string _decisionrule; 15 | private string _symptomname; 16 | private string _contents; 17 | private int? _status; 18 | private int? _evalguidid; 19 | /// 20 | /// 编号 21 | /// 22 | public int ID 23 | { 24 | set{ _id=value;} 25 | get{return _id;} 26 | } 27 | /// 28 | /// 判断规则 29 | /// 30 | public string DecisionRule 31 | { 32 | set{ _decisionrule=value;} 33 | get{return _decisionrule;} 34 | } 35 | /// 36 | /// 症状名称 37 | /// 38 | public string SymptomName 39 | { 40 | set{ _symptomname=value;} 41 | get{return _symptomname;} 42 | } 43 | /// 44 | /// 内容 45 | /// 46 | public string Contents 47 | { 48 | set{ _contents=value;} 49 | get{return _contents;} 50 | } 51 | /// 52 | /// 标记 53 | /// 54 | public int? Status 55 | { 56 | set{ _status=value;} 57 | get{return _status;} 58 | } 59 | /// 60 | /// 61 | /// 62 | public int? EvalGuidId 63 | { 64 | set{ _evalguidid=value;} 65 | get{return _evalguidid;} 66 | } 67 | #endregion Model 68 | 69 | } 70 | } 71 | 72 | -------------------------------------------------------------------------------- /Model/SubMedicineProject.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace HTNResp.Model 3 | { 4 | /// 5 | /// SubMedicineProject:实体类(属性说明自动提取数据库字段的描述信息) 6 | /// 7 | [Serializable] 8 | public partial class SubMedicineProject 9 | { 10 | public SubMedicineProject() 11 | {} 12 | #region Model 13 | private int _id; 14 | private string _commonname; 15 | private string _dose; 16 | private string _usage; 17 | private int? _projectid; 18 | /// 19 | /// 编号 20 | /// 21 | public int ID 22 | { 23 | set{ _id=value;} 24 | get{return _id;} 25 | } 26 | /// 27 | /// 通用名 28 | /// 29 | public string CommonName 30 | { 31 | set{ _commonname=value;} 32 | get{return _commonname;} 33 | } 34 | /// 35 | /// 每次剂量 36 | /// 37 | public string Dose 38 | { 39 | set{ _dose=value;} 40 | get{return _dose;} 41 | } 42 | /// 43 | /// 每日次 44 | /// 45 | public string Usage 46 | { 47 | set{ _usage=value;} 48 | get{return _usage;} 49 | } 50 | /// 51 | /// 药物方案编号 52 | /// 53 | public int? ProjectId 54 | { 55 | set{ _projectid=value;} 56 | get{return _projectid;} 57 | } 58 | #endregion Model 59 | 60 | } 61 | } 62 | 63 | -------------------------------------------------------------------------------- /Model/SubtMedicineDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Model/SubtMedicineDetail.cs -------------------------------------------------------------------------------- /Model/SysNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace Maticsoft.Model 3 | { 4 | 5 | /// 6 | /// 树节点 7 | /// 8 | [Serializable] 9 | public class SysNode 10 | { 11 | private int _nodeid; 12 | private string _text; 13 | private int _parentid; 14 | private string _location; 15 | private int _orderid; 16 | private string _comment; 17 | private string _url; 18 | private int _permissionid; 19 | private string _imageurl; 20 | private int _moduleid; 21 | private int _keshidm; 22 | private string _keshipublic; 23 | public SysNode() 24 | { 25 | } 26 | public int NodeID 27 | { 28 | set{ _nodeid=value;} 29 | get{return _nodeid;} 30 | } 31 | 32 | public string Text 33 | { 34 | set{ _text=value;} 35 | get{return _text;} 36 | } 37 | public int ParentID 38 | { 39 | set{ _parentid=value;} 40 | get{return _parentid;} 41 | } 42 | public string Location 43 | { 44 | set{ _location=value;} 45 | get{return _location;} 46 | } 47 | public int OrderID 48 | { 49 | set{ _orderid=value;} 50 | get{return _orderid;} 51 | } 52 | public string Comment 53 | { 54 | set{ _comment=value;} 55 | get{return _comment;} 56 | } 57 | public string Url 58 | { 59 | set{ _url=value;} 60 | get{return _url;} 61 | } 62 | public int PermissionID 63 | { 64 | set{ _permissionid=value;} 65 | get{return _permissionid;} 66 | } 67 | public string ImageUrl 68 | { 69 | set{ _imageurl=value;} 70 | get{return _imageurl;} 71 | } 72 | public int ModuleID 73 | { 74 | set{_moduleid=value;} 75 | get{return _moduleid;} 76 | } 77 | 78 | public int KeShiDM 79 | { 80 | set{_keshidm=value;} 81 | get{return _keshidm;} 82 | } 83 | public string KeshiPublic 84 | { 85 | set{ _keshipublic=value;} 86 | get{return _keshipublic;} 87 | } 88 | 89 | } 90 | } 91 | -------------------------------------------------------------------------------- /Model/UserTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Model/UserTable.cs -------------------------------------------------------------------------------- /Model/bin/Debug/HTNResp.Model.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Model/bin/Debug/HTNResp.Model.dll -------------------------------------------------------------------------------- /Model/bin/Debug/HTNResp.Model.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Model/bin/Debug/HTNResp.Model.pdb -------------------------------------------------------------------------------- /Model/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Model/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Model/obj/Debug/HTNResp.Model.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Model/obj/Debug/HTNResp.Model.dll -------------------------------------------------------------------------------- /Model/obj/Debug/HTNResp.Model.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Model/obj/Debug/HTNResp.Model.pdb -------------------------------------------------------------------------------- /Model/obj/Debug/Model.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | cc42bee26ddd33168c1332405047761fe56127db 2 | -------------------------------------------------------------------------------- /Model/obj/Debug/Model.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\CodematicDemo\CodematicDemo\Model\bin\Debug\HTNResp.Model.dll 2 | C:\CodematicDemo\CodematicDemo\Model\bin\Debug\HTNResp.Model.pdb 3 | C:\CodematicDemo\CodematicDemo\Model\obj\Debug\ResolveAssemblyReference.cache 4 | C:\CodematicDemo\CodematicDemo\Model\obj\Debug\HTNResp.Model.dll 5 | C:\CodematicDemo\CodematicDemo\Model\obj\Debug\HTNResp.Model.pdb 6 | C:\VSProject\CodematicDemo\Model\bin\Debug\HTNResp.Model.dll 7 | C:\VSProject\CodematicDemo\Model\bin\Debug\HTNResp.Model.pdb 8 | C:\VSProject\CodematicDemo\Model\obj\Debug\ResolveAssemblyReference.cache 9 | C:\VSProject\CodematicDemo\Model\obj\Debug\HTNResp.Model.dll 10 | C:\VSProject\CodematicDemo\Model\obj\Debug\HTNResp.Model.pdb 11 | C:\Users\xxzx\Desktop\HTNResp\HTNResp\Model\bin\Debug\HTNResp.Model.dll 12 | C:\Users\xxzx\Desktop\HTNResp\HTNResp\Model\bin\Debug\HTNResp.Model.pdb 13 | C:\Users\xxzx\Desktop\HTNResp\HTNResp\Model\obj\Debug\ResolveAssemblyReference.cache 14 | C:\Users\xxzx\Desktop\HTNResp\HTNResp\Model\obj\Debug\HTNResp.Model.dll 15 | C:\Users\xxzx\Desktop\HTNResp\HTNResp\Model\obj\Debug\HTNResp.Model.pdb 16 | C:\Users\fwyy\Desktop\HTNResp001\Model\bin\Debug\HTNResp.Model.dll 17 | C:\Users\fwyy\Desktop\HTNResp001\Model\bin\Debug\HTNResp.Model.pdb 18 | C:\Users\fwyy\Desktop\HTNResp001\Model\obj\Debug\HTNResp.Model.dll 19 | C:\Users\fwyy\Desktop\HTNResp001\Model\obj\Debug\HTNResp.Model.pdb 20 | C:\Users\fwyy\Desktop\HTNResp001\Model\obj\Debug\Model.csprojResolveAssemblyReference.cache 21 | C:\Users\xxzx\Desktop\HTNResp001\Model\bin\Debug\HTNResp.Model.dll 22 | C:\Users\xxzx\Desktop\HTNResp001\Model\bin\Debug\HTNResp.Model.pdb 23 | C:\Users\xxzx\Desktop\HTNResp001\Model\obj\Debug\ResolveAssemblyReference.cache 24 | C:\Users\xxzx\Desktop\HTNResp001\Model\obj\Debug\HTNResp.Model.dll 25 | C:\Users\xxzx\Desktop\HTNResp001\Model\obj\Debug\HTNResp.Model.pdb 26 | E:\HTNResp002\Model\bin\Debug\HTNResp.Model.dll 27 | E:\HTNResp002\Model\bin\Debug\HTNResp.Model.pdb 28 | E:\HTNResp002\Model\obj\Debug\Model.csprojResolveAssemblyReference.cache 29 | E:\HTNResp002\Model\obj\Debug\HTNResp.Model.dll 30 | E:\HTNResp002\Model\obj\Debug\HTNResp.Model.pdb 31 | \\Mac\Home\Downloads\HTNResp002\Model\bin\Debug\HTNResp.Model.dll 32 | \\Mac\Home\Downloads\HTNResp002\Model\bin\Debug\HTNResp.Model.pdb 33 | \\Mac\Home\Downloads\HTNResp002\Model\obj\Debug\Model.csproj.CoreCompileInputs.cache 34 | \\Mac\Home\Downloads\HTNResp002\Model\obj\Debug\HTNResp.Model.dll 35 | \\Mac\Home\Downloads\HTNResp002\Model\obj\Debug\HTNResp.Model.pdb 36 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # aspnetmvc_management_system 2 | asp.net mvc 数据库SqlServer 后台管理系统 3 | 4 | 1.基本表维护 5 | 2.用户权限管理 6 | 3.echart图表 7 | 4.上传图片等功能 8 | 9 | 下面是效果预览 10 | 11 | 数据库SqlServer文件链接 https://github.com/richard1015/aspnetmvc_management_system/blob/master/DB.zip 12 | 13 | ![演示](/1%E7%99%BB%E5%BD%95.png "1.png") 14 | 15 | ![演示](/2%E9%A6%96%E9%A1%B5.png "2.png") 16 | 17 | ![演示](/3%E5%88%97%E8%A1%A8%E7%AE%A1%E7%90%86.png "3.png") 18 | 19 | ![演示](/4%E5%88%97%E8%A1%A8%E4%BF%AE%E6%94%B9.png "4.png") 20 | 21 | ![演示](/5%E6%96%B0%E5%A2%9E.png "5.png") 22 | 23 | ![演示](/6%E5%9B%BE%E7%89%87%E4%B8%8A%E4%BC%A0.png "6.png") 24 | 25 | ![演示](/7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.png "7.png") 26 | 27 | ![演示](/8%E6%95%B0%E6%8D%AE%E5%BA%93%E9%A2%84%E8%A7%88.png "8.png") 28 | -------------------------------------------------------------------------------- /Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/Thumbs.db -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.4.0.20710.0/Microsoft.AspNet.Mvc.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.AspNet.Mvc.4.0.20710.0/Microsoft.AspNet.Mvc.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.4.0.20710.0/lib/net40/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.AspNet.Mvc.4.0.20710.0/lib/net40/System.Web.Mvc.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.2.0.20710.0/Microsoft.AspNet.Razor.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.AspNet.Razor.2.0.20710.0/Microsoft.AspNet.Razor.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.2.0.20710.0/lib/net40/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.AspNet.Razor.2.0.20710.0/lib/net40/System.Web.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.4.0.20710.0/Microsoft.AspNet.WebApi.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.AspNet.WebApi.4.0.20710.0/Microsoft.AspNet.WebApi.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/Microsoft.AspNet.WebApi.Client.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/Microsoft.AspNet.WebApi.Client.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/lib/net40/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/lib/net40/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/Microsoft.AspNet.WebApi.Core.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/Microsoft.AspNet.WebApi.Core.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/content/web.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/lib/net40/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/lib/net40/System.Web.Http.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/lib/net40/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/lib/net40/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.20710.0/Microsoft.AspNet.WebPages.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.AspNet.WebPages.2.0.20710.0/Microsoft.AspNet.WebPages.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.Helpers.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Deployment.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | System.Web.WebPages.Deployment 5 | 6 | 7 | 8 | Provides a registration point for pre-application start code for Web Pages deployment. 9 | 10 | 11 | Registers pre-application start code for Web Pages deployment. 12 | 13 | 14 | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. 15 | 16 | 17 | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. 18 | 19 | 20 | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. 21 | 22 | 23 | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. 24 | 25 | 26 | The path of the root directory for the application. 27 | 28 | 29 | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. 30 | 31 | 32 | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. 33 | 34 | 35 | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. 36 | 37 | 38 | This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. 39 | 40 | 41 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.6/Newtonsoft.Json.4.5.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Newtonsoft.Json.4.5.6/Newtonsoft.Json.4.5.6.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.6/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard1015/aspnetmvc_management_system/740c2ccb1740581041e12e48f43dac83eab5589e/packages/Newtonsoft.Json.4.5.6/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | --------------------------------------------------------------------------------