gitextract_tryq7klz/ ├── .gitattributes ├── .gitignore ├── .nuget ├── .tfignore ├── LICENSE ├── README.md ├── docs/ │ ├── 初始化文件/ │ │ ├── Coldairarrow.Fx.Net.Easyui.GitHub.bak │ │ └── db.sql │ └── 数据库设计/ │ ├── Base_Table.pdm │ └── Base_Table.sws ├── src/ │ ├── Coldairarrow.Business/ │ │ ├── 00Cache/ │ │ │ ├── BaseCache/ │ │ │ │ ├── BaseCache.T.cs │ │ │ │ └── IBaseCache.T.cs │ │ │ └── Base_UserModelCache.cs │ │ ├── 04.Coldairarrow.Business.csproj │ │ ├── BaseBusiness/ │ │ │ └── BaseBusiness.T.cs │ │ ├── Base_SysManage/ │ │ │ ├── Base_AppSecretBusiness.cs │ │ │ ├── Base_DatabaseLinkBusiness.cs │ │ │ ├── Base_SysLogBusiness.cs │ │ │ ├── Base_SysRoleBusiness.cs │ │ │ ├── Base_UserBusiness.cs │ │ │ ├── CheckSignBusiness.cs │ │ │ ├── HomeBusiness.cs │ │ │ ├── PermissionManage.cs │ │ │ ├── RapidDevelopmentBusiness.cs │ │ │ └── UrlPermissionManage.cs │ │ ├── Common/ │ │ │ ├── BusHelper.cs │ │ │ └── Operator.cs │ │ ├── Logger/ │ │ │ ├── ElasticSearchLogger.cs │ │ │ ├── ILogger.cs │ │ │ ├── LoggerFactory.cs │ │ │ └── RDBMSLogger.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── packages.config │ ├── Coldairarrow.Console/ │ │ ├── 06.Coldairarrow.Console.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── Coldairarrow.DataRepository/ │ │ ├── 02.Coldairarrow.DataRepository.csproj │ │ ├── DbContext/ │ │ │ └── BaseDbContext.cs │ │ ├── DbFactory.cs │ │ ├── IRepository/ │ │ │ ├── IRepository.T.cs │ │ │ └── IRepository.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Repository/ │ │ │ ├── DbRepository.cs │ │ │ ├── MySqlRepository.cs │ │ │ ├── OracleRepository.cs │ │ │ ├── PostgreSqlRepository.cs │ │ │ └── SqlServerRepository.cs │ │ ├── Transaction/ │ │ │ └── DistributedTransaction.cs │ │ ├── app.config │ │ ├── packages.config │ │ └── publishNuget.bat │ ├── Coldairarrow.Demo/ │ │ ├── 07.Coldairarrow.Demo.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── Coldairarrow.Entity/ │ │ ├── 03.Coldairarrow.Entity.csproj │ │ ├── App.config │ │ ├── Base_SysManage/ │ │ │ ├── Base_AppSecret.cs │ │ │ ├── Base_DatabaseLink.cs │ │ │ ├── Base_PermissionAppId.cs │ │ │ ├── Base_PermissionRole.cs │ │ │ ├── Base_PermissionUser.cs │ │ │ ├── Base_SysLog.cs │ │ │ ├── Base_SysRole.cs │ │ │ ├── Base_UnitTest.cs │ │ │ ├── Base_User.cs │ │ │ ├── Base_UserRoleMap.cs │ │ │ └── EnumType.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── Coldairarrow.Fx.Net.Easyui.GitHub.sln │ ├── Coldairarrow.UnitTests/ │ │ ├── 10.Coldairarrow.UnitTests.csproj │ │ ├── App.config │ │ ├── Base_SysManage/ │ │ │ └── Base_BusinessTests.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── UnitTest.cs │ │ └── packages.config │ ├── Coldairarrow.Util/ │ │ ├── 01.Coldairarrow.Util.csproj │ │ ├── 01.Coldairarrow.Util.nuspec │ │ ├── ApiSDK/ │ │ │ └── CTCC_IOT_ApiSDK.cs │ │ ├── Cache/ │ │ │ ├── CacheHelper.cs │ │ │ ├── ICache.cs │ │ │ ├── RedisCache.cs │ │ │ └── SystemCache.cs │ │ ├── ClassLibrary/ │ │ │ ├── BloomFilter.cs │ │ │ ├── LinqKit/ │ │ │ │ ├── ExpandableQuery.cs │ │ │ │ ├── ExpressionExpander.cs │ │ │ │ ├── ExpressionVisitor.cs │ │ │ │ ├── Extensions.cs │ │ │ │ └── Linq.cs │ │ │ ├── ParentChildrenMapping.cs │ │ │ ├── SerialConnecter/ │ │ │ │ └── SerialConnecter.cs │ │ │ ├── ShareMemory.cs │ │ │ ├── Sockets/ │ │ │ │ ├── SendCheckMsg.cs │ │ │ │ ├── TcpSocketClient.cs │ │ │ │ ├── TcpSocketConnection.cs │ │ │ │ ├── TcpSocketServer.cs │ │ │ │ ├── UdpSocketClient.cs │ │ │ │ ├── UdpSocketServer.cs │ │ │ │ ├── WebSocketConnection.cs │ │ │ │ └── WebSocketServer.cs │ │ │ ├── TaskQeury.cs │ │ │ ├── Wcf/ │ │ │ │ ├── IWcfHost.cs │ │ │ │ ├── WcfClient.cs │ │ │ │ ├── WcfHelper.cs │ │ │ │ └── WcfHost.cs │ │ │ ├── WcfMS/ │ │ │ │ ├── BaseWcfMSService.cs │ │ │ │ ├── IBaseWcfMSService.cs │ │ │ │ ├── WcfMSBase.cs │ │ │ │ ├── WcfMSClient.cs │ │ │ │ ├── WcfMSConfig.cs │ │ │ │ └── WcfMSServer.cs │ │ │ └── WindowsService/ │ │ │ ├── WindowsService.cs │ │ │ ├── WindowsService.designer.cs │ │ │ └── WindowsServiceContainer.cs │ │ ├── DataAccess/ │ │ │ ├── DbHelper.cs │ │ │ ├── DbHelperFactory.cs │ │ │ ├── DbProviderFactoryHelper.cs │ │ │ ├── MySqlHelper.cs │ │ │ ├── OracleHelper.cs │ │ │ ├── PostgreSqlHelper.cs │ │ │ ├── RedisHelper.cs │ │ │ └── SqlServerHelper.cs │ │ ├── Extention/ │ │ │ ├── Extention.ActionExecutingContext.cs │ │ │ ├── Extention.Byte.cs │ │ │ ├── Extention.DataTable.cs │ │ │ ├── Extention.DateTime.cs │ │ │ ├── Extention.Delegate.cs │ │ │ ├── Extention.ExpandoObject.cs │ │ │ ├── Extention.Expression.cs │ │ │ ├── Extention.Guid.cs │ │ │ ├── Extention.IEnumerable.cs │ │ │ ├── Extention.IQueryable.cs │ │ │ ├── Extention.Int.cs │ │ │ ├── Extention.Object.cs │ │ │ ├── Extention.Stream.cs │ │ │ ├── Extention.String.cs │ │ │ └── Extention.Type.cs │ │ ├── GlobalSwitch.cs │ │ ├── Helper/ │ │ │ ├── AsposeOfficeHelper.cs │ │ │ ├── BaiduApiHelper.cs │ │ │ ├── ConfigHelper.cs │ │ │ ├── DbSearchHelper.cs │ │ │ ├── DelegateHelper.cs │ │ │ ├── EmitHelper.cs │ │ │ ├── ExceptionHelper.cs │ │ │ ├── FileHelper.cs │ │ │ ├── FileZipHelper.cs │ │ │ ├── GuidHelper.cs │ │ │ ├── HttpHelper.cs │ │ │ ├── ImgHelper.cs │ │ │ ├── IocHelper.cs │ │ │ ├── IpHelper.cs │ │ │ ├── LinqHelper.cs │ │ │ ├── LogHelper.cs │ │ │ ├── LoopHelper.cs │ │ │ ├── QRCodeHelper.cs │ │ │ ├── RandomHelper.cs │ │ │ ├── TimerHelper.cs │ │ │ ├── TreeHelper.cs │ │ │ ├── TypeBuilderHelper.cs │ │ │ └── XmlHelper.cs │ │ ├── Model/ │ │ │ ├── AjaxResult.cs │ │ │ ├── DatabaseType.cs │ │ │ ├── DbTableInfo.cs │ │ │ ├── DynamicModel.cs │ │ │ ├── EasyuiTreeDto.cs │ │ │ ├── ErrorResult.cs │ │ │ ├── FileEntry.cs │ │ │ ├── LoggerType.cs │ │ │ ├── Pagination.cs │ │ │ ├── SuccessResult.cs │ │ │ ├── TableInfo.cs │ │ │ └── TreeModel.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── WebApp/ │ │ │ └── SessionHelper.cs │ │ ├── app.config │ │ ├── packages.config │ │ └── publishNuget.bat │ └── Coldairarrow.Web/ │ ├── 05.Coldairarrow.Web.csproj │ ├── App_Start/ │ │ ├── 01Handler/ │ │ │ ├── 全局错误过滤/ │ │ │ │ └── HandlerGlobalError.cs │ │ │ ├── 参数非空校验/ │ │ │ │ └── CheckParamNotEmptyAttribute.cs │ │ │ ├── 后台用户接口权限校验/ │ │ │ │ ├── CheckUrlPermissionAttribute.cs │ │ │ │ └── IgnoreUrlPermissionAttribute.cs │ │ │ ├── 对外接口签名校验/ │ │ │ │ ├── CheckAppIdPermissionAttribute.cs │ │ │ │ ├── CheckSignAttribute.cs │ │ │ │ ├── IgnoreAppIdPermissionAttribute.cs │ │ │ │ └── IgnoreSignAttribute.cs │ │ │ └── 登录校验/ │ │ │ ├── CheckLoginAttribute.cs │ │ │ └── IgnoreLoginAttribute.cs │ │ ├── 02BaseController/ │ │ │ ├── BaseApiController.cs │ │ │ ├── BaseController.cs │ │ │ └── BaseMvcController.cs │ │ ├── 03Extentions/ │ │ │ └── Extention.UrlHelper.cs │ │ ├── FilterConfig.cs │ │ └── RouteConfig.cs │ ├── Areas/ │ │ └── Base_SysManage/ │ │ ├── Base_SysManageAreaRegistration.cs │ │ ├── Controllers/ │ │ │ ├── Base_AppSecretController.cs │ │ │ ├── Base_DatabaseLinkController.cs │ │ │ ├── Base_SysLogController.cs │ │ │ ├── Base_SysRoleController.cs │ │ │ ├── Base_UserController.cs │ │ │ ├── CityController.cs │ │ │ ├── CommonController.cs │ │ │ └── RapidDevelopmentController.cs │ │ └── Views/ │ │ ├── Base_AppSecret/ │ │ │ ├── Form.cshtml │ │ │ ├── Index.cshtml │ │ │ └── PermissionForm.cshtml │ │ ├── Base_DatabaseLink/ │ │ │ ├── Form.cshtml │ │ │ └── Index.cshtml │ │ ├── Base_SysLog/ │ │ │ └── Index.cshtml │ │ ├── Base_SysRole/ │ │ │ ├── Form.cshtml │ │ │ ├── Index.cshtml │ │ │ └── PermissionForm.cshtml │ │ ├── Base_User/ │ │ │ ├── ChangePwdForm.cshtml │ │ │ ├── Form.cshtml │ │ │ ├── Index.cshtml │ │ │ └── PermissionForm.cshtml │ │ ├── City/ │ │ │ └── Index.cshtml │ │ ├── Common/ │ │ │ └── ShowBigImg.cshtml │ │ ├── RapidDevelopment/ │ │ │ ├── Form.cshtml │ │ │ └── Index.cshtml │ │ └── web.config │ ├── Common/ │ │ └── SystemMenuManage.cs │ ├── Config/ │ │ ├── NingboGeojson.json │ │ ├── Permission.config │ │ ├── Province.json │ │ ├── SystemMenu.config │ │ ├── UrlPermission.config │ │ ├── database.config │ │ └── system.config │ ├── Controllers/ │ │ ├── DemoController.cs │ │ ├── HomeController.cs │ │ └── TestController.cs │ ├── Download/ │ │ └── _.txt │ ├── Global.asax │ ├── Global.asax.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles/ │ │ └── FolderProfile.pubxml │ ├── Scripts/ │ │ ├── business/ │ │ │ └── requestbusiness.js │ │ ├── config.js │ │ ├── easyui/ │ │ │ ├── datagrid-cellediting.js │ │ │ ├── easyloader.js │ │ │ ├── jquery.easyui.extend.js │ │ │ ├── license_freeware.txt │ │ │ ├── locale/ │ │ │ │ └── easyui-lang-zh_CN.js │ │ │ ├── plugins/ │ │ │ │ ├── jquery.accordion.js │ │ │ │ ├── jquery.calendar.js │ │ │ │ ├── jquery.combo.js │ │ │ │ ├── jquery.combobox.js │ │ │ │ ├── jquery.combogrid.js │ │ │ │ ├── jquery.combotree.js │ │ │ │ ├── jquery.combotreegrid.js │ │ │ │ ├── jquery.datagrid.js │ │ │ │ ├── jquery.datalist.js │ │ │ │ ├── jquery.datebox.js │ │ │ │ ├── jquery.datetimebox.js │ │ │ │ ├── jquery.datetimespinner.js │ │ │ │ ├── jquery.dialog.js │ │ │ │ ├── jquery.draggable.js │ │ │ │ ├── jquery.droppable.js │ │ │ │ ├── jquery.filebox.js │ │ │ │ ├── jquery.form.js │ │ │ │ ├── jquery.layout.js │ │ │ │ ├── jquery.linkbutton.js │ │ │ │ ├── jquery.menu.js │ │ │ │ ├── jquery.menubutton.js │ │ │ │ ├── jquery.messager.js │ │ │ │ ├── jquery.mobile.js │ │ │ │ ├── jquery.numberbox.js │ │ │ │ ├── jquery.numberspinner.js │ │ │ │ ├── jquery.pagination.js │ │ │ │ ├── jquery.panel.js │ │ │ │ ├── jquery.parser.js │ │ │ │ ├── jquery.passwordbox.js │ │ │ │ ├── jquery.progressbar.js │ │ │ │ ├── jquery.propertygrid.js │ │ │ │ ├── jquery.resizable.js │ │ │ │ ├── jquery.searchbox.js │ │ │ │ ├── jquery.slider.js │ │ │ │ ├── jquery.spinner.js │ │ │ │ ├── jquery.splitbutton.js │ │ │ │ ├── jquery.switchbutton.js │ │ │ │ ├── jquery.tabs.js │ │ │ │ ├── jquery.tagbox.js │ │ │ │ ├── jquery.textbox.js │ │ │ │ ├── jquery.timespinner.js │ │ │ │ ├── jquery.tooltip.js │ │ │ │ ├── jquery.tree.js │ │ │ │ ├── jquery.treegrid.js │ │ │ │ ├── jquery.validatebox.js │ │ │ │ └── jquery.window.js │ │ │ ├── themes/ │ │ │ │ ├── bootstrap/ │ │ │ │ │ ├── accordion.css │ │ │ │ │ ├── calendar.css │ │ │ │ │ ├── combo.css │ │ │ │ │ ├── combobox.css │ │ │ │ │ ├── datagrid.css │ │ │ │ │ ├── datalist.css │ │ │ │ │ ├── datebox.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── easyui.css │ │ │ │ │ ├── filebox.css │ │ │ │ │ ├── layout.css │ │ │ │ │ ├── linkbutton.css │ │ │ │ │ ├── menu.css │ │ │ │ │ ├── menubutton.css │ │ │ │ │ ├── messager.css │ │ │ │ │ ├── numberbox.css │ │ │ │ │ ├── pagination.css │ │ │ │ │ ├── panel.css │ │ │ │ │ ├── passwordbox.css │ │ │ │ │ ├── progressbar.css │ │ │ │ │ ├── propertygrid.css │ │ │ │ │ ├── searchbox.css │ │ │ │ │ ├── slider.css │ │ │ │ │ ├── spinner.css │ │ │ │ │ ├── splitbutton.css │ │ │ │ │ ├── switchbutton.css │ │ │ │ │ ├── tabs.css │ │ │ │ │ ├── tagbox.css │ │ │ │ │ ├── textbox.css │ │ │ │ │ ├── tooltip.css │ │ │ │ │ ├── tree.css │ │ │ │ │ ├── validatebox.css │ │ │ │ │ └── window.css │ │ │ │ ├── color.css │ │ │ │ ├── default/ │ │ │ │ │ ├── accordion.css │ │ │ │ │ ├── calendar.css │ │ │ │ │ ├── combo.css │ │ │ │ │ ├── combobox.css │ │ │ │ │ ├── datagrid.css │ │ │ │ │ ├── datalist.css │ │ │ │ │ ├── datebox.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── easyui.css │ │ │ │ │ ├── filebox.css │ │ │ │ │ ├── layout.css │ │ │ │ │ ├── linkbutton.css │ │ │ │ │ ├── menu.css │ │ │ │ │ ├── menubutton.css │ │ │ │ │ ├── messager.css │ │ │ │ │ ├── numberbox.css │ │ │ │ │ ├── pagination.css │ │ │ │ │ ├── panel.css │ │ │ │ │ ├── passwordbox.css │ │ │ │ │ ├── progressbar.css │ │ │ │ │ ├── propertygrid.css │ │ │ │ │ ├── searchbox.css │ │ │ │ │ ├── slider.css │ │ │ │ │ ├── spinner.css │ │ │ │ │ ├── splitbutton.css │ │ │ │ │ ├── switchbutton.css │ │ │ │ │ ├── tabs.css │ │ │ │ │ ├── textbox.css │ │ │ │ │ ├── tooltip.css │ │ │ │ │ ├── tree.css │ │ │ │ │ ├── validatebox.css │ │ │ │ │ └── window.css │ │ │ │ └── icon.css │ │ │ └── views/ │ │ │ ├── datagrid-bufferview.js │ │ │ ├── datagrid-defaultview.js │ │ │ ├── datagrid-detailview.js │ │ │ ├── datagrid-groupview.js │ │ │ └── datagrid-scrollview.js │ │ ├── global.js │ │ ├── typings/ │ │ │ └── jquery/ │ │ │ └── jquery.d.ts │ │ ├── util/ │ │ │ ├── easyui-extend.js │ │ │ ├── framework-util.js │ │ │ ├── upload-time.js │ │ │ └── util.js │ │ └── vendor/ │ │ ├── easy-validate/ │ │ │ └── easy-validate.js │ │ ├── echarts/ │ │ │ └── echarts.js │ │ ├── highcharts/ │ │ │ ├── adapters/ │ │ │ │ ├── standalone-framework.js │ │ │ │ └── standalone-framework.src.js │ │ │ ├── highcharts-3d.js │ │ │ ├── highcharts-3d.src.js │ │ │ ├── highcharts-more.js │ │ │ ├── highcharts-more.src.js │ │ │ ├── highcharts.js │ │ │ ├── highcharts.src.js │ │ │ ├── modules/ │ │ │ │ ├── boost.js │ │ │ │ ├── boost.src.js │ │ │ │ ├── broken-axis.js │ │ │ │ ├── broken-axis.src.js │ │ │ │ ├── canvas-tools.js │ │ │ │ ├── canvas-tools.src.js │ │ │ │ ├── data.js │ │ │ │ ├── data.src.js │ │ │ │ ├── drilldown.js │ │ │ │ ├── drilldown.src.js │ │ │ │ ├── exporting.js │ │ │ │ ├── exporting.src.js │ │ │ │ ├── funnel.js │ │ │ │ ├── funnel.src.js │ │ │ │ ├── heatmap.js │ │ │ │ ├── heatmap.src.js │ │ │ │ ├── no-data-to-display.js │ │ │ │ ├── no-data-to-display.src.js │ │ │ │ ├── offline-exporting.js │ │ │ │ ├── offline-exporting.src.js │ │ │ │ ├── series-label.js │ │ │ │ ├── series-label.src.js │ │ │ │ ├── solid-gauge.js │ │ │ │ ├── solid-gauge.src.js │ │ │ │ ├── treemap.js │ │ │ │ └── treemap.src.js │ │ │ └── themes/ │ │ │ ├── dark-blue.js │ │ │ ├── dark-green.js │ │ │ ├── dark-unica.js │ │ │ ├── gray.js │ │ │ ├── grid-light.js │ │ │ ├── grid.js │ │ │ ├── sand-signika.js │ │ │ └── skies.js │ │ ├── html5Uploader/ │ │ │ └── html5Uploader.js │ │ ├── layui/ │ │ │ ├── css/ │ │ │ │ ├── layui.css │ │ │ │ ├── layui.mobile.css │ │ │ │ └── modules/ │ │ │ │ ├── code.css │ │ │ │ ├── laydate/ │ │ │ │ │ └── default/ │ │ │ │ │ └── laydate.css │ │ │ │ └── layer/ │ │ │ │ └── default/ │ │ │ │ └── layer.css │ │ │ ├── lay/ │ │ │ │ └── modules/ │ │ │ │ ├── carousel.js │ │ │ │ ├── code.js │ │ │ │ ├── element.js │ │ │ │ ├── flow.js │ │ │ │ ├── form.js │ │ │ │ ├── jquery.js │ │ │ │ ├── laydate.js │ │ │ │ ├── layedit.js │ │ │ │ ├── layer.js │ │ │ │ ├── laypage.js │ │ │ │ ├── laytpl.js │ │ │ │ ├── mobile.js │ │ │ │ ├── table.js │ │ │ │ ├── tree.js │ │ │ │ ├── upload.js │ │ │ │ └── util.js │ │ │ ├── layui.all.js │ │ │ └── layui.js │ │ ├── template/ │ │ │ └── template.js │ │ ├── umeditor/ │ │ │ ├── dialogs/ │ │ │ │ ├── emotion/ │ │ │ │ │ ├── emotion.css │ │ │ │ │ └── emotion.js │ │ │ │ ├── formula/ │ │ │ │ │ ├── formula.css │ │ │ │ │ ├── formula.html │ │ │ │ │ └── formula.js │ │ │ │ ├── image/ │ │ │ │ │ ├── image.css │ │ │ │ │ └── image.js │ │ │ │ ├── link/ │ │ │ │ │ └── link.js │ │ │ │ ├── map/ │ │ │ │ │ ├── map.html │ │ │ │ │ └── map.js │ │ │ │ └── video/ │ │ │ │ ├── video.css │ │ │ │ └── video.js │ │ │ ├── index.html │ │ │ ├── lang/ │ │ │ │ ├── en/ │ │ │ │ │ └── en.js │ │ │ │ └── zh-cn/ │ │ │ │ └── zh-cn.js │ │ │ ├── net/ │ │ │ │ ├── Uploader.cs │ │ │ │ ├── getContent.ashx │ │ │ │ ├── getContent.ashx.cs │ │ │ │ ├── imageUp.ashx │ │ │ │ └── imageUp.ashx.cs │ │ │ ├── themes/ │ │ │ │ └── default/ │ │ │ │ └── css/ │ │ │ │ └── umeditor.css │ │ │ ├── third-party/ │ │ │ │ └── mathquill/ │ │ │ │ ├── font/ │ │ │ │ │ ├── Symbola.otf │ │ │ │ │ └── stixgeneral-bundle/ │ │ │ │ │ └── STIXFontLicense2010.txt │ │ │ │ ├── mathquill.css │ │ │ │ └── mathquill.js │ │ │ ├── umeditor.config.js │ │ │ └── umeditor.js │ │ ├── util/ │ │ │ ├── easyui-extends.js │ │ │ ├── upload-time.js │ │ │ └── util.js │ │ └── vue/ │ │ └── vue.js │ ├── Skin/ │ │ ├── compass.watch.cmd │ │ ├── config.rb │ │ ├── global.css │ │ ├── home/ │ │ │ └── desktop.css │ │ ├── login.css │ │ ├── reference/ │ │ │ ├── sprite-mixins.css │ │ │ └── variables.css │ │ ├── scss/ │ │ │ ├── global.scss │ │ │ ├── login.scss │ │ │ ├── reference/ │ │ │ │ ├── sprite-mixins.scss │ │ │ │ └── variables.scss │ │ │ └── ue_templates.scss │ │ └── ue_templates.css │ ├── Upload/ │ │ └── _.txt │ ├── Views/ │ │ ├── Demo/ │ │ │ ├── UMEditor.cshtml │ │ │ ├── UploadFileForm.cshtml │ │ │ ├── UploadFileIndex.cshtml │ │ │ └── UploadImgView.cshtml │ │ ├── Home/ │ │ │ ├── Desktop.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Login.cshtml │ │ │ ├── Statis.cshtml │ │ │ └── Test.cshtml │ │ ├── Shared/ │ │ │ ├── _Layout_List.cshtml │ │ │ └── _Layout_List_js.cshtml │ │ ├── Test/ │ │ │ ├── GetNingboGeojsonForm.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── MapDatTest.cshtml │ │ │ └── RequestDemo.cshtml │ │ └── web.config │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config └── 框架使用说明书.docx