├── .dockerignore ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .vs ├── ProjectSettings.json ├── VSWorkspaceState.json ├── slnx.sqlite └── tasks.vs.json ├── Common ├── Cdy.Tag.Common │ ├── Cdy.Tag.Common.csproj │ ├── Common │ │ ├── ArrayList.cs │ │ ├── ClientAuthorization.cs │ │ ├── Const.cs │ │ ├── CustomQueue.cs │ │ ├── DateTimeSpan.cs │ │ ├── FileHelper.cs │ │ ├── FixedMemoryBlock.cs │ │ ├── IMemoryBlock.cs │ │ ├── IPLimite.cs │ │ ├── IdBuffer.cs │ │ ├── MarshalFixedMemoryBlock.cs │ │ ├── MarshalMemoryBlock.cs │ │ ├── MarshalVarintCodeMemory.cs │ │ ├── Md5Helper.cs │ │ ├── MemoryBlock.cs │ │ ├── MemoryHelper.cs │ │ ├── MemorySpan.cs │ │ ├── PointData.cs │ │ ├── ProcessInfo.cs │ │ ├── ProtoMemory.cs │ │ ├── QualityConst.cs │ │ ├── ThreadHelper.cs │ │ ├── ThreadPool.cs │ │ ├── VarintCodeMemory.cs │ │ └── WindowConsolHelper.cs │ ├── Logger │ │ ├── ConsoleLogger.cs │ │ ├── ILog.cs │ │ └── LoggerService.cs │ ├── Logo │ │ ├── Author.txt │ │ ├── Logo.txt │ │ └── LogoHelper.cs │ ├── Properties │ │ └── launchSettings.json │ └── ServiceLocator.cs ├── Cdy.Tag.Consume │ ├── Cdy.Tag.Consume.csproj │ ├── IConsumeDriver.cs │ ├── IEmbedProxy.cs │ ├── IHisDataPatch.cs │ ├── IRealComsumer.cs │ └── IRuntimeSecurity.cs ├── Cdy.Tag.Driver │ ├── Cdy.Tag.Driver.csproj │ ├── IProducterDriver.cs │ ├── IRealTagProducter.cs │ └── ITagHisvalueProducter.cs ├── Cdy.Tag.Network │ ├── BufferManager2.cs │ ├── Cdy.Tag.Network.csproj │ ├── Obsolute │ │ ├── BufferManager.cs │ │ ├── ByteBufferExtends.cs │ │ ├── ClientChannelHandler.cs │ │ ├── ServerChannelHandler.cs │ │ ├── SocketClient.cs │ │ └── SocketServer.cs │ ├── SocketClient2.cs │ └── SocketServer2.cs ├── Cdy.Tag │ ├── Cdy.Tag.csproj │ ├── ComplexTagClass.cs │ ├── ComplexTagClassDocument.cs │ ├── ComplexTagClassDocumentSerise.cs │ ├── Config │ │ ├── Compress.cfg │ │ └── DataFileSerise.cfg │ ├── Database.cs │ ├── DatabaseSerise.cs │ ├── His │ │ ├── CompressUnitManager2.cs │ │ ├── CompressUnitbase2.cs │ │ ├── DataFileSeriserManager.cs │ │ ├── DataFileSeriserbase.cs │ │ ├── HisDatabase.cs │ │ ├── HisDatabaseSerise.cs │ │ ├── HisSettingDoc.cs │ │ ├── HisTag.cs │ │ ├── IDataCompressService.cs │ │ ├── IHisDataNewService.cs │ │ ├── QueryContext.cs │ │ ├── RecordType.cs │ │ ├── StatisticsMemoryMap.cs │ │ └── obsolete │ │ │ ├── CompressUnitManager.cs │ │ │ └── CompressUnitbase.cs │ ├── ITagQuery.cs │ ├── Interface │ │ ├── FilterAction.cs │ │ ├── HisQueryResult.cs │ │ ├── HisQueryTableResult.cs │ │ ├── IHisQuery.cs │ │ ├── IHisQueryFromMemory.cs │ │ ├── IHisTagQuery.cs │ │ ├── IRealData.cs │ │ ├── IRealDataNotify.cs │ │ ├── IRealDataNotifyForProducter.cs │ │ ├── IValueConvert.cs │ │ ├── MultiHisQueryResult.cs │ │ ├── NumberStatisticsQueryResult.cs │ │ ├── QueryValueCalType.cs │ │ └── TagHisValue.cs │ ├── PathHelper.cs │ ├── Real │ │ ├── ProducterValueChangedNotifyProcesser.cs │ │ ├── RealDatabase.cs │ │ ├── RealDatabaseSerise.cs │ │ ├── SpecialTags │ │ │ ├── BoolTag.cs │ │ │ ├── ByteTag.cs │ │ │ ├── ComplexClassTag.cs │ │ │ ├── ComplexTag.cs │ │ │ ├── DateTimeTag.cs │ │ │ ├── DoubleTag.cs │ │ │ ├── FloatTag.cs │ │ │ ├── IntPoint3Tag.cs │ │ │ ├── IntPointTag.cs │ │ │ ├── IntTag.cs │ │ │ ├── LongPoint3Tag.cs │ │ │ ├── LongPointTag.cs │ │ │ ├── LongTag.cs │ │ │ ├── ShortTag.cs │ │ │ ├── StringTag.cs │ │ │ ├── UIntPoint3Tag.cs │ │ │ ├── UIntPointTag.cs │ │ │ ├── UIntTag.cs │ │ │ ├── ULongPoint3Tag.cs │ │ │ ├── ULongPointTag.cs │ │ │ ├── ULongTag.cs │ │ │ └── UShortTag.cs │ │ ├── TagGroup.cs │ │ ├── TagType.cs │ │ ├── Tagbase.cs │ │ ├── ValueChangedNotifyProcesser.cs │ │ ├── ValueConvert │ │ │ ├── BitConvert.cs │ │ │ ├── InvertConvert.cs │ │ │ ├── LinerConvert.cs │ │ │ ├── StringFormatConvert.cs │ │ │ └── ValueConvertManager.cs │ │ └── WorkState.cs │ ├── RealTagTable.cs │ ├── Security │ │ ├── PermissionDocument.cs │ │ ├── SecurityDocument.cs │ │ ├── SecuritySerise.cs │ │ ├── UserDocument.cs │ │ ├── UserGroup.cs │ │ ├── UserItem.cs │ │ └── UserPermission.cs │ ├── SettingDoc.cs │ └── TagValue.cs └── Cdy.TagTests │ └── Cdy.TagTests.csproj ├── Develop ├── DBDevelopClientApi │ ├── DBDevelopClientApi.csproj │ ├── DevelopServiceHelper.cs │ ├── Properties │ │ └── launchSettings.json │ └── developService.proto ├── DBDevelopClientWebApi │ ├── DBDevelopClientWebApi.csproj │ ├── Database.cs │ ├── DatabaseUser.cs │ ├── DevelopServiceHelper.cs │ ├── RequestBase.cs │ └── SystemUser.cs ├── DBDevelopService │ ├── Controllers │ │ ├── Database.cs │ │ ├── DatabaseUser.cs │ │ ├── DevelopServerController.cs │ │ ├── Erro.cs │ │ ├── LoginMessage.cs │ │ ├── RequestBase.cs │ │ └── SystemUser.cs │ ├── DBDevelopService.csproj │ ├── Database │ │ └── DbManager.cs │ ├── Driver │ │ └── DriverManager.cs │ ├── GrpcDBService.cs │ ├── IDatabaseManager.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Protos │ │ └── developService.proto │ ├── Security │ │ ├── Security.cs │ │ ├── SecurityManager.cs │ │ ├── SecuritySerise.cs │ │ ├── User.cs │ │ └── UserDocument.cs │ ├── Service.cs │ ├── Services │ │ └── DevelopServerService.cs │ ├── Startup.cs │ ├── WebAPIDBService.cs │ ├── WebAPIStartup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── DBStudio │ ├── BasePath.cfg │ ├── DBInStudioServer.csproj │ ├── DbInStudioServer.cfg │ ├── Program.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Resources.zh-CN.resx │ │ └── launchSettings.json │ ├── Res.cs │ └── mrdbds.ico └── DbManager.Desktop │ ├── App.xaml │ ├── App.xaml.cs │ ├── AutoLogin.cs │ ├── Common │ ├── CustomWindowBase.cs │ ├── DialogHelper.cs │ ├── PasswordControl.cs │ ├── RelayCommand.cs │ ├── Res.cs │ ├── ResMarkerExtension.cs │ └── WindowViewModelBase.cs │ ├── DBInStudio.Desktop.csproj │ ├── Image │ ├── AllSelect.png │ ├── Load.gif │ ├── Load2.gif │ ├── Security.png │ ├── Switch.png │ ├── UserSettings.png │ ├── add.png │ ├── alarm.png │ ├── cancel.png │ ├── cancelSave.png │ ├── cellselect.png │ ├── class.png │ ├── close.png │ ├── codetags.png │ ├── database-add.png │ ├── database.png │ ├── export.png │ ├── export2.png │ ├── hidden.png │ ├── huoxing.jpg │ ├── import.png │ ├── import2.png │ ├── log-out.png │ ├── max.png │ ├── minus.png │ ├── monitor.png │ ├── mrdbd.ico │ ├── ok.png │ ├── permissions.png │ ├── remove.png │ ├── rerun.png │ ├── rowselect.png │ ├── save.png │ ├── server-security.png │ ├── setting.png │ ├── show.png │ ├── spider.png │ ├── start.png │ ├── start2.png │ ├── stop.png │ ├── stop2.png │ ├── tag.png │ ├── user.png │ ├── wait.png │ ├── 文件夹.png │ └── 登录.png │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Resources.zh-CN.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── launchSettings.json │ ├── ServerHelper.cs │ ├── Themes │ ├── ControlStyle.xaml │ └── Generic.xaml │ ├── View │ ├── BitConvertView.xaml │ ├── BitConvertView.xaml.cs │ ├── ComplexTagInfoView.xaml │ ├── ComplexTagInfoView.xaml.cs │ ├── Convert │ │ └── IndexConverter.cs │ ├── ConvertEditView.xaml │ ├── ConvertEditView.xaml.cs │ ├── DatabaseSettingView.xaml │ ├── DatabaseSettingView.xaml.cs │ ├── DeadAreaCompressParameter.xaml │ ├── DeadAreaCompressParameter.xaml.cs │ ├── IdResetView.xaml │ ├── IdResetView.xaml.cs │ ├── ImportModeSelectView.xaml │ ├── ImportModeSelectView.xaml.cs │ ├── InvertConvertView.xaml │ ├── InvertConvertView.xaml.cs │ ├── LinearConvertView.xaml │ ├── LinearConvertView.xaml.cs │ ├── ListDatabaseView.xaml │ ├── ListDatabaseView.xaml.cs │ ├── LoginView.xaml │ ├── LoginView.xaml.cs │ ├── MarInfoView.xaml │ ├── MarInfoView.xaml.cs │ ├── NewDatabaseView.xaml │ ├── NewDatabaseView.xaml.cs │ ├── PermissionDetailView.xaml │ ├── PermissionDetailView.xaml.cs │ ├── PermissionGroupManagerView.xaml │ ├── PermissionGroupManagerView.xaml.cs │ ├── ScriptEditView.xaml │ ├── ScriptEditView.xaml.cs │ ├── ServerUserEditorView.xaml │ ├── ServerUserEditorView.xaml.cs │ ├── ServerUserGroupDetailView.xaml │ ├── ServerUserGroupDetailView.xaml.cs │ ├── SlopeCompressParameterView.xaml │ ├── SlopeCompressParameterView.xaml.cs │ ├── StringFormatConvertView.xaml │ ├── StringFormatConvertView.xaml.cs │ ├── TagClassDetailView.xaml │ ├── TagClassDetailView.xaml.cs │ ├── TagGroupDetailView.xaml │ ├── TagGroupDetailView.xaml.cs │ ├── UserGroupDetailView.xaml │ └── UserGroupDetailView.xaml.cs │ └── ViewModel │ ├── ComplexTagInfoViewModel.cs │ ├── ConvertEditViewModel.cs │ ├── DatabaseSettingConfigViewModel.cs │ ├── DatabaseSettingViewModel.cs │ ├── IModeSwitch.cs │ ├── ListDatabaseViewModel.cs │ ├── LoginViewModel.cs │ ├── MainViewModel.cs │ ├── MarInfoViewModel.cs │ ├── NewDatabaseViewModel.cs │ ├── PermissionDetailViewModel.cs │ ├── PermissionGroupManagerViewModel.cs │ ├── RegistorEditTypeManager.cs │ ├── SecurityTreeItemViewModel.cs │ ├── Server │ ├── CurrentUserManager.cs │ ├── ServerSecurityTreeViewModel.cs │ ├── ServerUserEditorTreeViewModel.cs │ ├── ServerUserEditorViewModel.cs │ ├── ServerUserManagerTreeViewModel.cs │ └── ServerUserManagerViewModel.cs │ ├── Tag │ ├── ComplexTagClassRoot.cs │ ├── CompressParameterModelBase.cs │ ├── IdResetViewModel.cs │ ├── ImportModeSelectViewModel.cs │ ├── TagClassDetailViewModel.cs │ ├── TagGroupDetailViewModel.cs │ ├── TagGroupViewModel.cs │ └── TagViewModel.cs │ ├── TreeItemViewModel.cs │ ├── UserGroupDetailViewModel.cs │ └── ViewModelBase.cs ├── Doc ├── Cert │ ├── ca.cer │ ├── ca.csr │ ├── ca.key │ ├── ca.srl │ ├── server.cer │ ├── server.csr │ ├── server.key │ └── 帮助.txt ├── Develop API.txt ├── Images │ ├── DbInStudio.png │ ├── Mars变量库应用.png │ ├── Mars实时库模式.png │ ├── Mars物联网应用.png │ └── mrdbr.png ├── Mars API 接口开发指南.docx ├── Mars 支持Sql语法查询.txt ├── Mars数据库安装.docx ├── Mars数据库快速入门.docx ├── WebApi.txt ├── 扩展开发规范.txt └── 通过Area优化Mars数据库的压缩率和查询速度.txt ├── Docker ├── DockerBuild.bat └── Dockerfile ├── Driver ├── CalculateDriver │ ├── CalculateDriver.csproj │ ├── Driver.cs │ └── Properties │ │ └── launchSettings.json ├── DirectAccess │ ├── DirectAccessDriver.ClientApi │ │ ├── ApiFunConst.cs │ │ ├── DirectAccessDriver.ClientApi.csproj │ │ ├── DriverProxy.cs │ │ ├── HisDataBuffer.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ └── RealDataBuffer.cs │ ├── DirectAccessDriver │ │ ├── APIConst.cs │ │ ├── Config │ │ │ └── DirectAccessDriver.cfg │ │ ├── DataService.cs │ │ ├── DirectAccessDriver.csproj │ │ ├── Driver.cs │ │ ├── HisDataServerProcess.cs │ │ ├── RealDataServerProcess.cs │ │ ├── ServerProcessBase.cs │ │ └── TagInfoServerProcess.cs │ ├── DirectAccessGrpc.Client │ │ ├── Client.cs │ │ ├── DirectAccessGrpc.Client.csproj │ │ └── Protos │ │ │ └── Data.proto │ ├── DirectAccessGrpc │ │ ├── Config │ │ │ └── DirectAccessGrpc.cfg │ │ ├── DirectAccessGrpc.csproj │ │ ├── DirectAccessProxy.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Protos │ │ │ └── Data.proto │ │ ├── SecurityManager.cs │ │ ├── Services │ │ │ └── DataService.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── mrdbdg.ico │ ├── DirectAccessMqtt.Client │ │ ├── Client.cs │ │ ├── DataDefine.cs │ │ └── DirectAccessMqtt.Client.csproj │ └── DirectAccessMqtt │ │ ├── Config │ │ ├── Config.cs │ │ └── DirectAccessMqtt.cfg │ │ ├── DataDefine.cs │ │ ├── DirectAccessMqtt.csproj │ │ ├── DirectAccessProxy.cs │ │ ├── MqttServer.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── SecurityManager.cs │ │ └── mrdbm.ico ├── SimDriver │ ├── CPUAssignHelper.cs │ ├── Driver.cs │ └── SimDriver.csproj ├── SpiderDriver.ClientApi │ ├── ApiFunConst.cs │ ├── DriverProxy.cs │ ├── HisDataBuffer.cs │ ├── Properties │ │ └── launchSettings.json │ ├── RealDataBuffer.cs │ └── SpiderDriver.ClientApi.csproj └── SpiderDriver │ ├── APIConst.cs │ ├── Config │ └── SpiderDriver.cfg │ ├── DataService.cs │ ├── Driver.cs │ ├── HisDataServerProcess.cs │ ├── Properties │ └── launchSettings.json │ ├── RealDataServerProcess.cs │ ├── ServerProcessBase.cs │ ├── SpiderDriver.csproj │ └── TagInfoServerProcess.cs ├── Example ├── Consumer │ ├── DBGrpcApiDemo │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── DBGrpcApiDemo.csproj │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── RelayCommand.cs │ └── HighSpeedApiDemo │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── HighSpeedApiDemo.csproj │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── RelayCommand.cs │ │ ├── ResultDialog.xaml │ │ └── ResultDialog.xaml.cs ├── Develop │ └── DevelopWebApiDemo │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── DevelopWebApiDemo.csproj │ │ ├── MainWindow.xaml │ │ └── MainWindow.xaml.cs └── Producter │ ├── DirectAccessDriverApiDemo │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── DirectAccessDriverApiDemo.csproj │ ├── MainWindow.xaml │ └── MainWindow.xaml.cs │ ├── DirectAccessDriverMQTTDemo │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── DirectAccessDriverMQTTDemo.csproj │ ├── MainWindow.xaml │ └── MainWindow.xaml.cs │ ├── DriectAccessDriverDemo │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── DriectAccessDriverGRPCDemo.csproj │ ├── DriectAccessDriverGRPCDemo_q010onh2_wpftmp.csproj │ ├── MainWindow.xaml │ └── MainWindow.xaml.cs │ └── SpiderDriverDemo │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ └── launchSettings.json │ ├── SpiderDriverDemo.csproj │ └── SpiderDriverDemo_mg0exysd_wpftmp.csproj ├── Extends ├── Blazor.ECharts │ ├── Array2DConverter.cs │ ├── Blazor.ECharts.csproj │ ├── ComponentBase.cs │ ├── Components │ │ ├── EBar.razor │ │ ├── EBar.razor.cs │ │ ├── ECandlestick.razor │ │ ├── ECandlestick.razor.cs │ │ ├── EChart.razor │ │ ├── EChart.razor.cs │ │ ├── EFunnel.razor │ │ ├── EFunnel.razor.cs │ │ ├── EGauge.razor │ │ ├── EGauge.razor.cs │ │ ├── EGraph.razor │ │ ├── EGraph.razor.cs │ │ ├── ELine.razor │ │ ├── ELine.razor.cs │ │ ├── ELines.razor │ │ ├── ELines.razor.cs │ │ ├── EMap.razor │ │ ├── EMap.razor.cs │ │ ├── EPie.razor │ │ ├── EPie.razor.cs │ │ ├── ERadar.razor │ │ ├── ERadar.razor.cs │ │ ├── ESankey.razor │ │ ├── ESankey.razor.cs │ │ ├── EScatter.razor │ │ ├── EScatter.razor.cs │ │ ├── ESunburst.razor │ │ ├── ESunburst.razor.cs │ │ ├── ETree.razor │ │ ├── ETree.razor.cs │ │ ├── ETreemap.razor │ │ └── ETreemap.razor.cs │ ├── EChartsDIExtends.cs │ ├── EventInvokeHelper.cs │ ├── JFuncConverter.cs │ ├── JsInterop.cs │ ├── Options │ │ ├── AngleAxis.cs │ │ ├── AreaStyle.cs │ │ ├── Axis.cs │ │ ├── AxisPointer.cs │ │ ├── BMap.cs │ │ ├── Brush.cs │ │ ├── Color.cs │ │ ├── DataSet.cs │ │ ├── DataZoom.cs │ │ ├── DispatchActionOption.cs │ │ ├── EChartsBaseOption.cs │ │ ├── EChartsOption.cs │ │ ├── EChartsOptionSerializer.cs │ │ ├── EchartsEventArgs.cs │ │ ├── EchartsEventBatch.cs │ │ ├── Effect.cs │ │ ├── Enum.cs │ │ ├── Graphic.cs │ │ ├── Grid.cs │ │ ├── HandleStyle.cs │ │ ├── IPosition.cs │ │ ├── JFunc.cs │ │ ├── Legend.cs │ │ ├── LineStyle.cs │ │ ├── LoadingOption.cs │ │ ├── Polar.cs │ │ ├── Radar.cs │ │ ├── RadiusAxis.cs │ │ ├── Rect.cs │ │ ├── ScaleLimit.cs │ │ ├── Series │ │ │ ├── Bar │ │ │ │ └── Bar.cs │ │ │ ├── Candlestick │ │ │ │ └── Candlestick.cs │ │ │ ├── Detail.cs │ │ │ ├── Emphasis.cs │ │ │ ├── Encode.cs │ │ │ ├── Funnel │ │ │ │ └── Funnel.cs │ │ │ ├── Gauge │ │ │ │ ├── Gauge.cs │ │ │ │ └── SplitLine.cs │ │ │ ├── Graph │ │ │ │ ├── Graph.cs │ │ │ │ ├── GraphCategory.cs │ │ │ │ ├── GraphForce.cs │ │ │ │ └── GraphLink.cs │ │ │ ├── ItemStyle.cs │ │ │ ├── Label.cs │ │ │ ├── LabelLayout.cs │ │ │ ├── Line │ │ │ │ ├── Line.cs │ │ │ │ └── MarkArea.cs │ │ │ ├── Lines │ │ │ │ └── Lines.cs │ │ │ ├── Map │ │ │ │ └── Map.cs │ │ │ ├── MarkLine.cs │ │ │ ├── MarkPoint.cs │ │ │ ├── NoteDataItem.cs │ │ │ ├── Pie │ │ │ │ ├── LabelLine.cs │ │ │ │ └── Pie.cs │ │ │ ├── Radar │ │ │ │ └── Radar.cs │ │ │ ├── Sankey │ │ │ │ ├── Sankey.cs │ │ │ │ └── SankeyLink.cs │ │ │ ├── Scatter │ │ │ │ └── Scatter.cs │ │ │ ├── SeriesData.cs │ │ │ ├── Sunburst │ │ │ │ └── Sunburst.cs │ │ │ ├── Tree │ │ │ │ ├── Leaves.cs │ │ │ │ └── Tree.cs │ │ │ └── Treemap │ │ │ │ └── Treemap.cs │ │ ├── SeriesBase.cs │ │ ├── SplitArea.cs │ │ ├── SplitLine.cs │ │ ├── TextStyle.cs │ │ ├── Timeline.cs │ │ ├── Title.cs │ │ ├── Toolbox.cs │ │ ├── Tooltip.cs │ │ ├── TooltipAxisPointer.cs │ │ └── VisualMap.cs │ ├── _Imports.razor │ └── wwwroot │ │ ├── background.png │ │ └── core.js ├── DBWebMonitor │ ├── App.razor │ ├── DBWebMonitor.csproj │ ├── Data │ │ ├── ISelectable.cs │ │ ├── MarsProxy.cs │ │ ├── RuntimeClient.cs │ │ ├── TagViewModel.cs │ │ └── TreeItem.cs │ ├── InnerJS │ │ ├── InnerHelper.ts │ │ ├── InnerJsHelper.cs │ │ ├── JSModuleInterop.cs │ │ └── jquery │ │ │ ├── jquery.d.ts │ │ │ └── jqueryui.d.ts │ ├── Pages │ │ ├── Datamonitor.razor │ │ ├── Datamonitor.razor.css │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.razor │ │ ├── Login.razor │ │ ├── Logmonitor.razor │ │ ├── Main.razor │ │ ├── Sqlquery.razor │ │ ├── _Host.cshtml │ │ └── _Layout.cshtml │ ├── Program.cs │ ├── Properties │ │ ├── PublishProfiles │ │ │ └── FolderProfile.pubxml │ │ └── launchSettings.json │ ├── Shared │ │ ├── HisValueViewer.razor │ │ ├── MainLayout.razor │ │ ├── MainLayout.razor.css │ │ ├── MonitorString.razor │ │ ├── NavMenu.razor │ │ ├── NavMenu.razor.css │ │ ├── PageNotifier.razor │ │ ├── SingalLayout.razor │ │ ├── ToolBar.razor │ │ ├── TreeGroupView.razor │ │ ├── TreeGroupView.razor.css │ │ ├── TreeItemView.razor │ │ └── TreeItemView.razor.css │ ├── _Imports.razor │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── mrdbwm.ico │ ├── tsconfig.json │ └── wwwroot │ │ ├── InnerHelper.js │ │ ├── css │ │ ├── Image │ │ │ ├── Folder.png │ │ │ ├── Security.png │ │ │ ├── Switch.png │ │ │ ├── UserSettings.png │ │ │ ├── cancelSave.png │ │ │ ├── class.png │ │ │ ├── codetags.png │ │ │ ├── database-add.png │ │ │ ├── database.png │ │ │ ├── export.png │ │ │ ├── import.png │ │ │ ├── mrdb.png │ │ │ ├── permissions.png │ │ │ ├── rerun.png │ │ │ ├── save.png │ │ │ ├── server-security.png │ │ │ ├── setting.png │ │ │ ├── start.png │ │ │ ├── stop.png │ │ │ ├── tag.png │ │ │ └── user.png │ │ ├── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── huoxing.jpg │ │ ├── open-iconic │ │ │ ├── FONT-LICENSE │ │ │ ├── ICON-LICENSE │ │ │ ├── README.md │ │ │ └── font │ │ │ │ ├── css │ │ │ │ └── open-iconic-bootstrap.min.css │ │ │ │ └── fonts │ │ │ │ ├── open-iconic.eot │ │ │ │ ├── open-iconic.otf │ │ │ │ ├── open-iconic.svg │ │ │ │ ├── open-iconic.ttf │ │ │ │ └── open-iconic.woff │ │ └── site.css │ │ └── favicon.ico ├── DBWebStudio │ ├── App.razor │ ├── DBWebStudio.csproj │ ├── DBWebStudio.sln │ ├── Data │ │ ├── CompressParameterModelBase.cs │ │ ├── IMenuService.cs │ │ ├── INotifyManager.cs │ │ ├── ISelectable.cs │ │ ├── MarsProxy.cs │ │ ├── ServerUserItemViewModel.cs │ │ ├── TagViewModel.cs │ │ ├── TreeItem.cs │ │ └── UserPermissionModel.cs │ ├── InnerJS │ │ ├── InnerHelper.ts │ │ ├── InnerJsHelper.cs │ │ ├── JSModuleInterop.cs │ │ └── jquery │ │ │ ├── jquery.d.ts │ │ │ └── jqueryui.d.ts │ ├── Pages │ │ ├── Classdetail.razor │ │ ├── Currentusermanager.razor │ │ ├── DatabaseSelect.razor │ │ ├── Databasepermission.razor │ │ ├── Databasepermission.razor.css │ │ ├── Databasesetting.razor │ │ ├── Databaseusermanager.razor │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.razor │ │ ├── Login.razor │ │ ├── NewDatabase.razor │ │ ├── Serverusermanager.razor │ │ ├── Taggroupdetail.razor │ │ ├── Taggroupdetail.razor.css │ │ ├── _Host.cshtml │ │ ├── _Layout.cshtml │ │ └── classdetail.razor.css │ ├── Program.cs │ ├── Properties │ │ ├── PublishProfiles │ │ │ └── FolderProfile.pubxml │ │ └── launchSettings.json │ ├── ReferenceDlls │ │ ├── Cdy.Tag.Common.dll │ │ ├── Cdy.Tag.dll │ │ └── DBDevelopClientApi.dll │ ├── Shared │ │ ├── ComplexSubRow.razor │ │ ├── ComplexSubRow.razor.css │ │ ├── ConvertControl.razor │ │ ├── CustomSelect.razor │ │ ├── MainLayout.razor │ │ ├── MainLayout.razor.css │ │ ├── NavMenu.razor │ │ ├── NavMenu.razor.css │ │ ├── PageNotifier.razor │ │ ├── SingalLayout.razor │ │ ├── StringEditor.razor │ │ ├── SurveyPrompt.razor │ │ ├── ToolBar.razor │ │ ├── TreeGroupView.razor │ │ ├── TreeGroupView.razor.css │ │ ├── TreeItemView.razor │ │ └── TreeItemView.razor.css │ ├── _Imports.razor │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── mrdbws.ico │ ├── tsconfig.json │ └── wwwroot │ │ ├── InnerHelper.js │ │ ├── css │ │ ├── Image │ │ │ ├── Folder.png │ │ │ ├── Security.png │ │ │ ├── Switch.png │ │ │ ├── UserSettings.png │ │ │ ├── cancelSave.png │ │ │ ├── class.png │ │ │ ├── codetags.png │ │ │ ├── database-add.png │ │ │ ├── database.png │ │ │ ├── export.png │ │ │ ├── import.png │ │ │ ├── mrdb.png │ │ │ ├── permissions.png │ │ │ ├── rerun.png │ │ │ ├── save.png │ │ │ ├── server-security.png │ │ │ ├── setting.png │ │ │ ├── start.png │ │ │ ├── stop.png │ │ │ ├── tag.png │ │ │ └── user.png │ │ ├── bootstrap │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── huoxing.jpg │ │ ├── open-iconic │ │ │ ├── FONT-LICENSE │ │ │ ├── ICON-LICENSE │ │ │ ├── README.md │ │ │ └── font │ │ │ │ ├── css │ │ │ │ └── open-iconic-bootstrap.min.css │ │ │ │ └── fonts │ │ │ │ ├── open-iconic.eot │ │ │ │ ├── open-iconic.otf │ │ │ │ ├── open-iconic.svg │ │ │ │ ├── open-iconic.ttf │ │ │ │ └── open-iconic.woff │ │ └── site.css │ │ └── favicon.ico └── 扩展开发规范.txt ├── LICENSE ├── Mars.sln ├── Proxy ├── DBGrpcApi.Client │ ├── Client.cs │ ├── DBGrpcApi.Client.csproj │ ├── Properties │ │ └── launchSettings.json │ └── Protos │ │ ├── HisData.proto │ │ ├── RealData.proto │ │ ├── Security.proto │ │ └── TagInfo.proto ├── DBGrpcApi │ ├── Config │ │ └── DBGrpcApi.cfg │ ├── DBGrpcApi.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Protos │ │ ├── HisData.proto │ │ ├── RealData.proto │ │ ├── Security.proto │ │ └── TagInfo.proto │ ├── SecurityManager.cs │ ├── Services │ │ ├── HisDataService.cs │ │ ├── RealDataService.cs │ │ ├── SecurityService.cs │ │ └── TagInfoService.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── mrdbg.ico ├── DBHighApi.Client │ ├── ApiClient.cs │ ├── DBHighApi.Client.csproj │ └── Properties │ │ └── launchSettings.json ├── DBHighApi │ ├── APIService │ │ ├── DataService.cs │ │ ├── HisDataServerProcess.cs │ │ ├── RealDataServerProcess.cs │ │ ├── ServerProcessBase.cs │ │ └── TagInfoServerProcess.cs │ ├── Config │ │ └── DBHighApi.cfg │ ├── DBHighApi.csproj │ ├── Program.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ └── launchSettings.json │ ├── Res.cs │ ├── SecurityManager.cs │ └── mrdbi.ico ├── DBHighApiEmbedded │ ├── APIService │ │ ├── DataService.cs │ │ ├── HisDataServerProcess.cs │ │ ├── RealDataServerProcess.cs │ │ ├── ServerProcessBase.cs │ │ └── TagInfoServerProcess.cs │ ├── DBHighApiEmbedded.csproj │ ├── HighApi.cs │ └── Properties │ │ └── launchSettings.json ├── DBOpcServer │ ├── Config │ │ └── DBOpcServer.cfg │ ├── DBOpcServer.csproj │ ├── MarsNodeManager.cs │ ├── MarsOpcuaServer.cs │ ├── MarsTag.cs │ ├── OPCServer.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── mrdbopc.ico └── DbInRunWebApi │ ├── .config │ └── dotnet-tools.json │ ├── Config │ └── DbWebApi.cfg │ ├── Controllers │ ├── HisDataController.cs │ ├── HomeController.cs │ ├── LoginController.cs │ ├── RealDataController.cs │ └── TagInfoController.cs │ ├── DbWebApi.csproj │ ├── DbWebApi.xml │ ├── Model │ ├── LoginUser.cs │ ├── RealValue.cs │ └── Requestbase.cs │ ├── Program.cs │ ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Resources.zh-CN.resx │ └── launchSettings.json │ ├── Res.cs │ ├── SecurityManager.cs │ ├── WebAPIStartup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── mrdbw.ico │ └── wwwroot │ └── Index.html ├── README.md ├── RunTime ├── DBHisData │ ├── DBHisData.csproj │ ├── HisQuery │ │ ├── DataFileManager.cs │ │ ├── HisQueryManager.cs │ │ ├── QuerySerivce.cs │ │ ├── TagHeadOffsetManager.cs │ │ └── TimeFile │ │ │ ├── DataFileInfo4.cs │ │ │ ├── DataFileInfo5.cs │ │ │ ├── DataFileInfo6.cs │ │ │ ├── DecodeMemoryCachManager.cs │ │ │ ├── HeadPointDataCachManager.cs │ │ │ ├── HisDataFileInfo4.cs │ │ │ ├── IDataFile.cs │ │ │ ├── LogFileInfo.cs │ │ │ ├── MonthTimeFile.cs │ │ │ ├── StatisticsFileHelper.cs │ │ │ ├── TimeFileBase.cs │ │ │ └── YearTimeFile.cs │ └── obsolete │ │ ├── DataFileInfo.cs │ │ └── HisDataFileInfo.cs ├── DBHisDataServer │ ├── DBHisDataServer.csproj │ ├── DataService.cs │ ├── HisDataServerProcess.cs │ ├── Program.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ └── launchSettings.json │ ├── Res.cs │ ├── Runner.cs │ ├── ServerProcessBase.cs │ ├── TagInfoServerProcess.cs │ └── mrdbhs.ico ├── DBInRun │ ├── DBInRun.csproj │ ├── DbInRun.cfg │ ├── Mars.sln │ ├── Program.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Resources.zh-CN.resx │ │ └── launchSettings.json │ ├── Res.cs │ ├── mrdb.ico │ └── mrdbr.ico ├── DBRunTime.ServiceApi │ ├── ApiClient.cs │ └── DBRunTime.ServiceApi.csproj ├── DBRuntime.Proxy │ ├── Config │ │ └── ProxyClientConfig.cfg │ ├── DBRuntime.Proxy.csproj │ ├── DatabaseRunner.cs │ ├── DbServerProxy.cs │ └── Driver │ │ └── NetTransformDriver.cs ├── DBRuntime.Real │ ├── DBRuntime.Real.csproj │ ├── Real │ │ ├── ComsumerValueChangedNotifyManager.cs │ │ ├── ProducterValueChangedNotifyManager.cs │ │ ├── RealEnginer.cs │ │ └── RealEnginer2.cs │ └── Security │ │ └── SecurityRunner.cs ├── DBRuntime │ ├── Api │ │ ├── DataService.cs │ │ ├── HisDataServerProcess.cs │ │ ├── IAPINotify.cs │ │ ├── RealDataServerProcess.cs │ │ ├── ServerProcessBase.cs │ │ └── TagInfoServerProcess.cs │ ├── Config │ │ ├── Compress.cfg │ │ ├── DataFileSerise.cfg │ │ ├── Driver.cfg │ │ └── EmbedProxy.cfg │ ├── DBRuntime.csproj │ ├── Driver │ │ └── DriverManager.cs │ ├── His │ │ ├── CPUAssignHelper.cs │ │ ├── CachMemoryBlock.cs │ │ ├── Compress │ │ │ ├── CompressEnginer3.cs │ │ │ ├── CompressEnginer4.cs │ │ │ ├── CompressMemory3.cs │ │ │ ├── CompressMemory4.cs │ │ │ └── Special │ │ │ │ ├── DeadAreaCompressUnit2.cs │ │ │ │ ├── DoubleCompressBuffer.cs │ │ │ │ ├── FloatCompressBuffer.cs │ │ │ │ ├── Int16CompressBuffer.cs │ │ │ │ ├── Int64CompressBuffer.cs │ │ │ │ ├── IntCompressBuffer.cs │ │ │ │ ├── LosslessCompressUnit2.cs │ │ │ │ ├── NoneCompressUnit2.cs │ │ │ │ ├── NoneCompressUnit3.cs │ │ │ │ ├── SlopeCompressUnit2.cs │ │ │ │ ├── UInt16CompressBuffer.cs │ │ │ │ ├── UInt64CompressBuffer.cs │ │ │ │ └── UIntCompressBuffer.cs │ │ ├── HisDataArrange4.cs │ │ ├── HisDataFileLocker.cs │ │ ├── HisDataMemoryBlock.cs │ │ ├── HisDataMemoryBlockCollection3.cs │ │ ├── HisDataMemoryQueryService3.cs │ │ ├── HisDataPatchSeriser.cs │ │ ├── HisEnginer3.cs │ │ ├── HisEnginer4.cs │ │ ├── HisEnginer5.cs │ │ ├── HisdataRestore.cs │ │ ├── LocalFileSeriser.cs │ │ ├── LogManager3.cs │ │ ├── LogStorageManager.cs │ │ ├── LogStorageManager2.cs │ │ ├── ManualHisDataMemoryBlock.cs │ │ ├── ManualHisDataMemoryBlockAreaPool.cs │ │ ├── ManualHisDataMemoryBlockPool.cs │ │ ├── MarshalMemoryBlockPool.cs │ │ ├── MemoryBlockPool.cs │ │ ├── MetaFileBlock.cs │ │ ├── SeriseEnginer4.cs │ │ ├── SeriseEnginer5.cs │ │ ├── SeriseEnginer6.cs │ │ ├── SeriseEnginer7.cs │ │ ├── Tag │ │ │ ├── ByteHisRunTag.cs │ │ │ ├── DateTimeHisRunTag.cs │ │ │ ├── DoubleHisRunTag.cs │ │ │ ├── FloatHisRunTag.cs │ │ │ ├── HisRunTag.cs │ │ │ ├── IntHisRunTag.cs │ │ │ ├── IntPoint3HisRunTag.cs │ │ │ ├── IntPointHisRunTag.cs │ │ │ ├── LongHisRunTag.cs │ │ │ ├── LongPoint3HisRunTag.cs │ │ │ ├── LongPointHisRunTag.cs │ │ │ ├── ShortHisRunTag.cs │ │ │ └── StringHisRunTag.cs │ │ ├── TimerMemoryCacheProcesser3.cs │ │ └── ValueChangedMemoryCacheProcesser3.cs │ ├── Interface │ │ ├── IDataCompress3.cs │ │ ├── IDataSerialize3.cs │ │ ├── IDataSerialize4.cs │ │ ├── IHisDataPatch.cs │ │ └── IHisEngine3.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ └── Resources.zh-CN.resx │ ├── RDDC │ │ ├── DataSync.cs │ │ ├── RDDCClient.cs │ │ ├── RDDCDataService.cs │ │ ├── RDDCManager.cs │ │ ├── RDDCServerProcessBase.cs │ │ ├── RealDataSyncServerProcess.cs │ │ └── WorStateServerProcess.cs │ ├── Res.cs │ ├── Runner3.cs │ ├── Runner4.cs │ └── obsolete │ │ ├── CompressEnginer3.cs │ │ ├── CompressMemory3.cs │ │ ├── HisEnginer3.cs │ │ ├── IDataSerialize3.cs │ │ ├── LogManager3.cs │ │ ├── Runner3.cs │ │ ├── SeriseEnginer4.cs │ │ └── SeriseEnginer5.cs ├── DBRuntimeTests │ ├── DBRuntimeTests.csproj │ └── His │ │ ├── Compress │ │ └── Special │ │ │ ├── Int16CompressBufferTests.cs │ │ │ ├── Int64CompressBufferTests.cs │ │ │ ├── IntCompressBufferTests.cs │ │ │ ├── UInt64CompressBufferTests.cs │ │ │ └── UIntCompressBufferTests.cs │ │ └── New │ │ └── HisDataMemoryBlockCollectionTests.cs └── RuntimeService │ ├── DBGuardian │ ├── DBGuardian.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── mrdbg.ico │ ├── DBRuntimeAPI │ ├── DBRuntimeAPI.csproj │ ├── IDatabaseService.cs │ ├── ILocalResourceService.cs │ ├── ILogService.cs │ └── Properties │ │ └── launchSettings.json │ ├── DBRuntimeMonitor │ ├── App.xaml │ ├── App.xaml.cs │ ├── Common │ │ ├── CustomWindowBase.cs │ │ ├── DialogHelper.cs │ │ ├── PasswordControl.cs │ │ ├── RelayCommand.cs │ │ ├── Res.cs │ │ ├── ResMarkerExtension.cs │ │ └── WindowViewModelBase.cs │ ├── DBRuntimeMonitor.csproj │ ├── IModeSwitch.cs │ ├── Image │ │ ├── add.png │ │ ├── alarm.png │ │ ├── cancel.png │ │ ├── close.png │ │ ├── database.png │ │ ├── huoxing.jpg │ │ ├── logs.png │ │ ├── max.png │ │ ├── minus.png │ │ ├── modify.png │ │ ├── mrdbm.ico │ │ ├── ok.png │ │ ├── refresh.png │ │ ├── remove.png │ │ ├── rerun.png │ │ ├── show.png │ │ ├── start.png │ │ ├── stop.png │ │ ├── systemmanager.png │ │ ├── tags.png │ │ └── wait.png │ ├── MainViewModel.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Model │ │ ├── Database.cs │ │ └── DatabaseDocument.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Resources.zh-CN.resx │ │ └── launchSettings.json │ ├── Themes │ │ ├── ControlStyle.xaml │ │ └── Generic.xaml │ ├── View │ │ ├── AlarmDetailView.xaml │ │ ├── AlarmDetailView.xaml.cs │ │ ├── Convert │ │ │ └── IndexConverter.cs │ │ ├── DatabaseDetailView.xaml │ │ ├── DatabaseDetailView.xaml.cs │ │ ├── DatabaseManagerView.xaml │ │ ├── DatabaseManagerView.xaml.cs │ │ ├── HisTagViewerView.xaml │ │ ├── HisTagViewerView.xaml.cs │ │ ├── LogDetailView.xaml │ │ ├── LogDetailView.xaml.cs │ │ ├── MarInfoView.xaml │ │ ├── MarInfoView.xaml.cs │ │ ├── TagGroupDetailView.xaml │ │ └── TagGroupDetailView.xaml.cs │ └── ViewModel │ │ ├── AlarmDetailViewModel.cs │ │ ├── AlarmNodeViewModel.cs │ │ ├── DatabaseDetailViewModel.cs │ │ ├── DatabaseManagerViewModel.cs │ │ ├── DatabaseViewModel.cs │ │ ├── LogDetailViewModel.cs │ │ ├── MarInfoViewModel.cs │ │ ├── Tag │ │ ├── CompressParameterModelBase.cs │ │ ├── HisTagViewer.cs │ │ ├── IdResetViewModel.cs │ │ ├── ImportModeSelectViewModel.cs │ │ ├── TagGroupDetailViewModel.cs │ │ ├── TagGroupViewModel.cs │ │ └── TagViewModel.cs │ │ ├── TreeItemViewModel.cs │ │ └── ViewModelBase.cs │ ├── DBRuntimeServer.Client │ ├── Client.cs │ ├── DBRuntimeServer.Client.csproj │ └── Protos │ │ ├── DBServer.proto │ │ ├── LogServer.proto │ │ └── MachineServer.proto │ ├── DBRuntimeServer │ ├── DBRuntimeServer.csproj │ ├── DBWebRunner.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Protos │ │ ├── DBServer.proto │ │ ├── LogServer.proto │ │ └── MachineServer.proto │ ├── Services │ │ ├── DBServerService.cs │ │ ├── LogServerService.cs │ │ ├── MachineServerService.cs │ │ └── UserManager.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json │ └── RuntimeServiceImp │ ├── DBRuntimeImp.csproj │ ├── DatabaseManager.cs │ ├── DynamicInfo.cs │ ├── LocalResourceMonitor.cs │ ├── NetworkInfo.cs │ ├── ProcessMonitorManager.cs │ ├── RuntimeServiceManager.cs │ └── ScreenViewer.cs ├── Test ├── Cdy.Tag.CommonTests │ ├── Cdy.Tag.CommonTests.csproj │ ├── Common │ │ ├── IdBufferTests.cs │ │ ├── MarshalFixedMemoryBlockTests.cs │ │ ├── ProcessMemoryInfoTests.cs │ │ ├── ProtoMemoryTests.cs │ │ └── VarintCodeMemoryTests.cs │ └── Real │ │ └── ValueConvert │ │ ├── BitConvertTests.cs │ │ └── StringFormatConvertTests.cs ├── Cdy.TagTests │ ├── Cdy.TagTests.csproj │ └── Interface │ │ └── ExpressFilterTests.cs ├── DataRunnerTests │ ├── DataRunnerTests.csproj │ └── His │ │ ├── HisQuery │ │ └── HisQueryResultTests.cs │ │ ├── MemoryBlockTests.cs │ │ └── Serise │ │ └── LocalFileSeriserTests.cs └── HisDataGenerator │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Config │ ├── Compress.cfg │ └── DataFileSerise.cfg │ ├── HisDataGenerator.csproj │ ├── MainWindow.xaml │ └── MainWindow.xaml.cs └── Tools ├── FileCodeGenerator ├── FileCodeGenerator.csproj └── Program.cs └── HisDataTools ├── App.xaml ├── App.xaml.cs ├── Chart ├── Brush │ ├── Bitmap │ │ ├── BitmapBase.cs │ │ ├── IBitmap.cs │ │ ├── LinearBitmap.cs │ │ └── PlanarGridBitmap.cs │ └── Brushes │ │ ├── IBrush.cs │ │ ├── LinearBrush.cs │ │ └── PlanarGridBrush.cs ├── ChartGeneric.xaml ├── ICurveChart.cs ├── Legend │ ├── Legend.xaml │ ├── Legend.xaml.cs │ ├── LineLegendItem.xaml │ └── LineLegendItem.xaml.cs └── Plotter │ ├── ChartInstance │ ├── CardiogramCurveChartPlotter.cs │ └── StaticCurveChartPlotter.cs │ ├── ChartPlotter.cs │ ├── Common │ ├── CursorGraphLine.xaml │ ├── CursorGraphLine.xaml.cs │ ├── LineLegendDetail.xaml │ ├── LineLegendDetail.xaml.cs │ ├── PointC.cs │ └── SplitItem.cs │ ├── CurveChartPlotter.cs │ ├── DataSource │ ├── CardiogramCurveEntitySource.cs │ ├── CurveEntitySource.cs │ └── ICurveEntitySource.cs │ ├── Marker │ ├── CirclePointMarker.cs │ ├── IMark.cs │ ├── T5PointMarker.cs │ └── TrianglePointMarker.cs │ ├── PlotterBase.cs │ ├── PlotterBaseStyle.xaml │ └── ViewPlotter.cs ├── Common ├── AutoFilterCombox.cs ├── CustomWindowBase.cs ├── DialogHelper.cs ├── RelayCommand.cs ├── Res.cs ├── ResMarkerExtension.cs └── WindowViewModelBase.cs ├── HisDataManager.cs ├── HisDataTools.csproj ├── HisDataTools_tincydy1_wpftmp.csproj ├── Image └── el-hg-icon-query.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Output ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Resources.zh-CN.resx └── launchSettings.json ├── Themes └── Generic.xaml ├── View ├── Convert │ └── IndexConverter.cs ├── HisDataQueryView.xaml ├── HisDataQueryView.xaml.cs ├── ListDatabaseView.xaml └── ListDatabaseView.xaml.cs ├── ViewModel ├── FunctionItemViewModel.cs ├── HisDataQueryItem.cs ├── HisDataQueryModel.cs ├── ListDatabaseViewModel.cs ├── MainViewModel.cs └── ViewModelBase.cs └── mrdbt.ico /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /.vs/tasks.vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/.vs/tasks.vs.json -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Cdy.Tag.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Cdy.Tag.Common.csproj -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/ArrayList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/ArrayList.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/ClientAuthorization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/ClientAuthorization.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/Const.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/Const.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/CustomQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/CustomQueue.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/DateTimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/DateTimeSpan.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/FileHelper.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/FixedMemoryBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/FixedMemoryBlock.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/IMemoryBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/IMemoryBlock.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/IPLimite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/IPLimite.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/IdBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/IdBuffer.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/MarshalMemoryBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/MarshalMemoryBlock.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/Md5Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/Md5Helper.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/MemoryBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/MemoryBlock.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/MemoryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/MemoryHelper.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/MemorySpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/MemorySpan.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/PointData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/PointData.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/ProcessInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/ProcessInfo.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/ProtoMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/ProtoMemory.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/QualityConst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/QualityConst.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/ThreadHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/ThreadHelper.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/ThreadPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/ThreadPool.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/VarintCodeMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/VarintCodeMemory.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Common/WindowConsolHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Common/WindowConsolHelper.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Logger/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Logger/ConsoleLogger.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Logger/ILog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Logger/ILog.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Logger/LoggerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Logger/LoggerService.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Logo/Author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Logo/Author.txt -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Logo/Logo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Logo/Logo.txt -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Logo/LogoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Logo/LogoHelper.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/Properties/launchSettings.json -------------------------------------------------------------------------------- /Common/Cdy.Tag.Common/ServiceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Common/ServiceLocator.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Consume/Cdy.Tag.Consume.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Consume/Cdy.Tag.Consume.csproj -------------------------------------------------------------------------------- /Common/Cdy.Tag.Consume/IConsumeDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Consume/IConsumeDriver.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Consume/IEmbedProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Consume/IEmbedProxy.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Consume/IHisDataPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Consume/IHisDataPatch.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Consume/IRealComsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Consume/IRealComsumer.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Consume/IRuntimeSecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Consume/IRuntimeSecurity.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Driver/Cdy.Tag.Driver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Driver/Cdy.Tag.Driver.csproj -------------------------------------------------------------------------------- /Common/Cdy.Tag.Driver/IProducterDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Driver/IProducterDriver.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Driver/IRealTagProducter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Driver/IRealTagProducter.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Driver/ITagHisvalueProducter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Driver/ITagHisvalueProducter.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Network/BufferManager2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Network/BufferManager2.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Network/Cdy.Tag.Network.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Network/Cdy.Tag.Network.csproj -------------------------------------------------------------------------------- /Common/Cdy.Tag.Network/Obsolute/BufferManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Network/Obsolute/BufferManager.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Network/Obsolute/ByteBufferExtends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Network/Obsolute/ByteBufferExtends.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Network/Obsolute/SocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Network/Obsolute/SocketClient.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Network/Obsolute/SocketServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Network/Obsolute/SocketServer.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Network/SocketClient2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Network/SocketClient2.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag.Network/SocketServer2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag.Network/SocketServer2.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Cdy.Tag.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Cdy.Tag.csproj -------------------------------------------------------------------------------- /Common/Cdy.Tag/ComplexTagClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/ComplexTagClass.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/ComplexTagClassDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/ComplexTagClassDocument.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/ComplexTagClassDocumentSerise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/ComplexTagClassDocumentSerise.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Config/Compress.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Config/Compress.cfg -------------------------------------------------------------------------------- /Common/Cdy.Tag/Config/DataFileSerise.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Config/DataFileSerise.cfg -------------------------------------------------------------------------------- /Common/Cdy.Tag/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Database.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/DatabaseSerise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/DatabaseSerise.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/His/CompressUnitManager2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/His/CompressUnitManager2.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/His/CompressUnitbase2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/His/CompressUnitbase2.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/His/DataFileSeriserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/His/DataFileSeriserManager.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/His/DataFileSeriserbase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/His/DataFileSeriserbase.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/His/HisDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/His/HisDatabase.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/His/HisDatabaseSerise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/His/HisDatabaseSerise.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/His/HisSettingDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/His/HisSettingDoc.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/His/HisTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/His/HisTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/His/IDataCompressService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/His/IDataCompressService.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/His/IHisDataNewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/His/IHisDataNewService.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/His/QueryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/His/QueryContext.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/His/RecordType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/His/RecordType.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/His/StatisticsMemoryMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/His/StatisticsMemoryMap.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/His/obsolete/CompressUnitManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/His/obsolete/CompressUnitManager.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/His/obsolete/CompressUnitbase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/His/obsolete/CompressUnitbase.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/ITagQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/ITagQuery.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Interface/FilterAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Interface/FilterAction.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Interface/HisQueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Interface/HisQueryResult.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Interface/HisQueryTableResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Interface/HisQueryTableResult.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Interface/IHisQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Interface/IHisQuery.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Interface/IHisQueryFromMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Interface/IHisQueryFromMemory.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Interface/IHisTagQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Interface/IHisTagQuery.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Interface/IRealData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Interface/IRealData.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Interface/IRealDataNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Interface/IRealDataNotify.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Interface/IValueConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Interface/IValueConvert.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Interface/MultiHisQueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Interface/MultiHisQueryResult.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Interface/QueryValueCalType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Interface/QueryValueCalType.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Interface/TagHisValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Interface/TagHisValue.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/PathHelper.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/RealDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/RealDatabase.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/RealDatabaseSerise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/RealDatabaseSerise.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/BoolTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/BoolTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/ByteTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/ByteTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/ComplexClassTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/ComplexClassTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/ComplexTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/ComplexTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/DateTimeTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/DateTimeTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/DoubleTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/DoubleTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/FloatTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/FloatTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/IntPoint3Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/IntPoint3Tag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/IntPointTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/IntPointTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/IntTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/IntTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/LongPoint3Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/LongPoint3Tag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/LongPointTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/LongPointTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/LongTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/LongTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/ShortTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/ShortTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/StringTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/StringTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/UIntPoint3Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/UIntPoint3Tag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/UIntPointTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/UIntPointTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/UIntTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/UIntTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/ULongPoint3Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/ULongPoint3Tag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/ULongPointTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/ULongPointTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/ULongTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/ULongTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/SpecialTags/UShortTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/SpecialTags/UShortTag.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/TagGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/TagGroup.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/TagType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/TagType.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/Tagbase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/Tagbase.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/ValueChangedNotifyProcesser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/ValueChangedNotifyProcesser.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/ValueConvert/BitConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/ValueConvert/BitConvert.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/ValueConvert/InvertConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/ValueConvert/InvertConvert.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/ValueConvert/LinerConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/ValueConvert/LinerConvert.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Real/WorkState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Real/WorkState.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/RealTagTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/RealTagTable.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Security/PermissionDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Security/PermissionDocument.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Security/SecurityDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Security/SecurityDocument.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Security/SecuritySerise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Security/SecuritySerise.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Security/UserDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Security/UserDocument.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Security/UserGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Security/UserGroup.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Security/UserItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Security/UserItem.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/Security/UserPermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/Security/UserPermission.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/SettingDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/SettingDoc.cs -------------------------------------------------------------------------------- /Common/Cdy.Tag/TagValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.Tag/TagValue.cs -------------------------------------------------------------------------------- /Common/Cdy.TagTests/Cdy.TagTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Common/Cdy.TagTests/Cdy.TagTests.csproj -------------------------------------------------------------------------------- /Develop/DBDevelopClientApi/DBDevelopClientApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopClientApi/DBDevelopClientApi.csproj -------------------------------------------------------------------------------- /Develop/DBDevelopClientApi/DevelopServiceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopClientApi/DevelopServiceHelper.cs -------------------------------------------------------------------------------- /Develop/DBDevelopClientApi/developService.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopClientApi/developService.proto -------------------------------------------------------------------------------- /Develop/DBDevelopClientWebApi/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopClientWebApi/Database.cs -------------------------------------------------------------------------------- /Develop/DBDevelopClientWebApi/DatabaseUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopClientWebApi/DatabaseUser.cs -------------------------------------------------------------------------------- /Develop/DBDevelopClientWebApi/DevelopServiceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopClientWebApi/DevelopServiceHelper.cs -------------------------------------------------------------------------------- /Develop/DBDevelopClientWebApi/RequestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopClientWebApi/RequestBase.cs -------------------------------------------------------------------------------- /Develop/DBDevelopClientWebApi/SystemUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopClientWebApi/SystemUser.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/Controllers/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/Controllers/Database.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/Controllers/DatabaseUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/Controllers/DatabaseUser.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/Controllers/Erro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/Controllers/Erro.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/Controllers/LoginMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/Controllers/LoginMessage.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/Controllers/RequestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/Controllers/RequestBase.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/Controllers/SystemUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/Controllers/SystemUser.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/DBDevelopService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/DBDevelopService.csproj -------------------------------------------------------------------------------- /Develop/DBDevelopService/Database/DbManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/Database/DbManager.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/Driver/DriverManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/Driver/DriverManager.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/GrpcDBService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/GrpcDBService.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/IDatabaseManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/IDatabaseManager.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/Protos/developService.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/Protos/developService.proto -------------------------------------------------------------------------------- /Develop/DBDevelopService/Security/Security.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/Security/Security.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/Security/SecurityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/Security/SecurityManager.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/Security/SecuritySerise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/Security/SecuritySerise.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/Security/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/Security/User.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/Security/UserDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/Security/UserDocument.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/Service.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/Startup.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/WebAPIDBService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/WebAPIDBService.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/WebAPIStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/WebAPIStartup.cs -------------------------------------------------------------------------------- /Develop/DBDevelopService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/appsettings.Development.json -------------------------------------------------------------------------------- /Develop/DBDevelopService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBDevelopService/appsettings.json -------------------------------------------------------------------------------- /Develop/DBStudio/BasePath.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Develop/DBStudio/DBInStudioServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBStudio/DBInStudioServer.csproj -------------------------------------------------------------------------------- /Develop/DBStudio/DbInStudioServer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBStudio/DbInStudioServer.cfg -------------------------------------------------------------------------------- /Develop/DBStudio/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBStudio/Program.cs -------------------------------------------------------------------------------- /Develop/DBStudio/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBStudio/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Develop/DBStudio/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBStudio/Properties/Resources.resx -------------------------------------------------------------------------------- /Develop/DBStudio/Properties/Resources.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBStudio/Properties/Resources.zh-CN.resx -------------------------------------------------------------------------------- /Develop/DBStudio/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBStudio/Properties/launchSettings.json -------------------------------------------------------------------------------- /Develop/DBStudio/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBStudio/Res.cs -------------------------------------------------------------------------------- /Develop/DBStudio/mrdbds.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DBStudio/mrdbds.ico -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/App.xaml -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/App.xaml.cs -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/AutoLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/AutoLogin.cs -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Common/CustomWindowBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Common/CustomWindowBase.cs -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Common/DialogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Common/DialogHelper.cs -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Common/PasswordControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Common/PasswordControl.cs -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Common/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Common/RelayCommand.cs -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Common/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Common/Res.cs -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/DBInStudio.Desktop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/DBInStudio.Desktop.csproj -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/AllSelect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/AllSelect.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/Load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/Load.gif -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/Load2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/Load2.gif -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/Security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/Security.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/Switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/Switch.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/UserSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/UserSettings.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/add.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/alarm.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/cancel.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/cancelSave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/cancelSave.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/cellselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/cellselect.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/class.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/close.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/codetags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/codetags.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/database-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/database-add.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/database.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/export.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/export2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/export2.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/hidden.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/huoxing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/huoxing.jpg -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/import.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/import2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/import2.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/log-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/log-out.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/max.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/minus.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/monitor.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/mrdbd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/mrdbd.ico -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/ok.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/permissions.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/remove.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/rerun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/rerun.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/rowselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/rowselect.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/save.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/server-security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/server-security.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/setting.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/show.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/spider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/spider.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/start.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/start2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/start2.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/stop.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/stop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/stop2.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/tag.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/user.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/wait.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/文件夹.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/文件夹.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Image/登录.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Image/登录.png -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/MainWindow.xaml -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Properties/Resources.resx -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/ServerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/ServerHelper.cs -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Themes/ControlStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Themes/ControlStyle.xaml -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/Themes/Generic.xaml -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/View/BitConvertView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/View/BitConvertView.xaml -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/View/BitConvertView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/View/BitConvertView.xaml.cs -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/View/ConvertEditView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/View/ConvertEditView.xaml -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/View/IdResetView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/View/IdResetView.xaml -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/View/IdResetView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/View/IdResetView.xaml.cs -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/View/InvertConvertView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/View/InvertConvertView.xaml -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/View/LinearConvertView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/View/LinearConvertView.xaml -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/View/ListDatabaseView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/View/ListDatabaseView.xaml -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/View/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/View/LoginView.xaml -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/View/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/View/LoginView.xaml.cs -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/View/MarInfoView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/View/MarInfoView.xaml -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/View/MarInfoView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/View/MarInfoView.xaml.cs -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/View/NewDatabaseView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/View/NewDatabaseView.xaml -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/View/ScriptEditView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/View/ScriptEditView.xaml -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/View/ScriptEditView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/View/ScriptEditView.xaml.cs -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/ViewModel/IModeSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/ViewModel/IModeSwitch.cs -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/ViewModel/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/ViewModel/LoginViewModel.cs -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/ViewModel/MainViewModel.cs -------------------------------------------------------------------------------- /Develop/DbManager.Desktop/ViewModel/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Develop/DbManager.Desktop/ViewModel/ViewModelBase.cs -------------------------------------------------------------------------------- /Doc/Cert/ca.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/Cert/ca.cer -------------------------------------------------------------------------------- /Doc/Cert/ca.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/Cert/ca.csr -------------------------------------------------------------------------------- /Doc/Cert/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/Cert/ca.key -------------------------------------------------------------------------------- /Doc/Cert/ca.srl: -------------------------------------------------------------------------------- 1 | 74F3F2C69D9022FB572B3325A3BE27F258FAAEA4 2 | -------------------------------------------------------------------------------- /Doc/Cert/server.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/Cert/server.cer -------------------------------------------------------------------------------- /Doc/Cert/server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/Cert/server.csr -------------------------------------------------------------------------------- /Doc/Cert/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/Cert/server.key -------------------------------------------------------------------------------- /Doc/Cert/帮助.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/Cert/帮助.txt -------------------------------------------------------------------------------- /Doc/Develop API.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/Develop API.txt -------------------------------------------------------------------------------- /Doc/Images/DbInStudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/Images/DbInStudio.png -------------------------------------------------------------------------------- /Doc/Images/Mars变量库应用.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/Images/Mars变量库应用.png -------------------------------------------------------------------------------- /Doc/Images/Mars实时库模式.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/Images/Mars实时库模式.png -------------------------------------------------------------------------------- /Doc/Images/Mars物联网应用.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/Images/Mars物联网应用.png -------------------------------------------------------------------------------- /Doc/Images/mrdbr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/Images/mrdbr.png -------------------------------------------------------------------------------- /Doc/Mars API 接口开发指南.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/Mars API 接口开发指南.docx -------------------------------------------------------------------------------- /Doc/Mars 支持Sql语法查询.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/Mars 支持Sql语法查询.txt -------------------------------------------------------------------------------- /Doc/Mars数据库安装.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/Mars数据库安装.docx -------------------------------------------------------------------------------- /Doc/Mars数据库快速入门.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/Mars数据库快速入门.docx -------------------------------------------------------------------------------- /Doc/WebApi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/WebApi.txt -------------------------------------------------------------------------------- /Doc/扩展开发规范.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/扩展开发规范.txt -------------------------------------------------------------------------------- /Doc/通过Area优化Mars数据库的压缩率和查询速度.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Doc/通过Area优化Mars数据库的压缩率和查询速度.txt -------------------------------------------------------------------------------- /Docker/DockerBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Docker/DockerBuild.bat -------------------------------------------------------------------------------- /Docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Docker/Dockerfile -------------------------------------------------------------------------------- /Driver/CalculateDriver/CalculateDriver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/CalculateDriver/CalculateDriver.csproj -------------------------------------------------------------------------------- /Driver/CalculateDriver/Driver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/CalculateDriver/Driver.cs -------------------------------------------------------------------------------- /Driver/CalculateDriver/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/CalculateDriver/Properties/launchSettings.json -------------------------------------------------------------------------------- /Driver/DirectAccess/DirectAccessDriver/APIConst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/DirectAccess/DirectAccessDriver/APIConst.cs -------------------------------------------------------------------------------- /Driver/DirectAccess/DirectAccessDriver/DataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/DirectAccess/DirectAccessDriver/DataService.cs -------------------------------------------------------------------------------- /Driver/DirectAccess/DirectAccessDriver/Driver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/DirectAccess/DirectAccessDriver/Driver.cs -------------------------------------------------------------------------------- /Driver/DirectAccess/DirectAccessGrpc.Client/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/DirectAccess/DirectAccessGrpc.Client/Client.cs -------------------------------------------------------------------------------- /Driver/DirectAccess/DirectAccessGrpc/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/DirectAccess/DirectAccessGrpc/Program.cs -------------------------------------------------------------------------------- /Driver/DirectAccess/DirectAccessGrpc/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/DirectAccess/DirectAccessGrpc/Startup.cs -------------------------------------------------------------------------------- /Driver/DirectAccess/DirectAccessGrpc/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/DirectAccess/DirectAccessGrpc/appsettings.json -------------------------------------------------------------------------------- /Driver/DirectAccess/DirectAccessGrpc/mrdbdg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/DirectAccess/DirectAccessGrpc/mrdbdg.ico -------------------------------------------------------------------------------- /Driver/DirectAccess/DirectAccessMqtt.Client/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/DirectAccess/DirectAccessMqtt.Client/Client.cs -------------------------------------------------------------------------------- /Driver/DirectAccess/DirectAccessMqtt/Config/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/DirectAccess/DirectAccessMqtt/Config/Config.cs -------------------------------------------------------------------------------- /Driver/DirectAccess/DirectAccessMqtt/DataDefine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/DirectAccess/DirectAccessMqtt/DataDefine.cs -------------------------------------------------------------------------------- /Driver/DirectAccess/DirectAccessMqtt/MqttServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/DirectAccess/DirectAccessMqtt/MqttServer.cs -------------------------------------------------------------------------------- /Driver/DirectAccess/DirectAccessMqtt/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/DirectAccess/DirectAccessMqtt/Program.cs -------------------------------------------------------------------------------- /Driver/DirectAccess/DirectAccessMqtt/mrdbm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/DirectAccess/DirectAccessMqtt/mrdbm.ico -------------------------------------------------------------------------------- /Driver/SimDriver/CPUAssignHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/SimDriver/CPUAssignHelper.cs -------------------------------------------------------------------------------- /Driver/SimDriver/Driver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/SimDriver/Driver.cs -------------------------------------------------------------------------------- /Driver/SimDriver/SimDriver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/SimDriver/SimDriver.csproj -------------------------------------------------------------------------------- /Driver/SpiderDriver.ClientApi/ApiFunConst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/SpiderDriver.ClientApi/ApiFunConst.cs -------------------------------------------------------------------------------- /Driver/SpiderDriver.ClientApi/DriverProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/SpiderDriver.ClientApi/DriverProxy.cs -------------------------------------------------------------------------------- /Driver/SpiderDriver.ClientApi/HisDataBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/SpiderDriver.ClientApi/HisDataBuffer.cs -------------------------------------------------------------------------------- /Driver/SpiderDriver.ClientApi/RealDataBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/SpiderDriver.ClientApi/RealDataBuffer.cs -------------------------------------------------------------------------------- /Driver/SpiderDriver/APIConst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/SpiderDriver/APIConst.cs -------------------------------------------------------------------------------- /Driver/SpiderDriver/Config/SpiderDriver.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/SpiderDriver/Config/SpiderDriver.cfg -------------------------------------------------------------------------------- /Driver/SpiderDriver/DataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/SpiderDriver/DataService.cs -------------------------------------------------------------------------------- /Driver/SpiderDriver/Driver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/SpiderDriver/Driver.cs -------------------------------------------------------------------------------- /Driver/SpiderDriver/HisDataServerProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/SpiderDriver/HisDataServerProcess.cs -------------------------------------------------------------------------------- /Driver/SpiderDriver/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/SpiderDriver/Properties/launchSettings.json -------------------------------------------------------------------------------- /Driver/SpiderDriver/RealDataServerProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/SpiderDriver/RealDataServerProcess.cs -------------------------------------------------------------------------------- /Driver/SpiderDriver/ServerProcessBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/SpiderDriver/ServerProcessBase.cs -------------------------------------------------------------------------------- /Driver/SpiderDriver/SpiderDriver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/SpiderDriver/SpiderDriver.csproj -------------------------------------------------------------------------------- /Driver/SpiderDriver/TagInfoServerProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Driver/SpiderDriver/TagInfoServerProcess.cs -------------------------------------------------------------------------------- /Example/Consumer/DBGrpcApiDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Consumer/DBGrpcApiDemo/App.xaml -------------------------------------------------------------------------------- /Example/Consumer/DBGrpcApiDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Consumer/DBGrpcApiDemo/App.xaml.cs -------------------------------------------------------------------------------- /Example/Consumer/DBGrpcApiDemo/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Consumer/DBGrpcApiDemo/AssemblyInfo.cs -------------------------------------------------------------------------------- /Example/Consumer/DBGrpcApiDemo/DBGrpcApiDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Consumer/DBGrpcApiDemo/DBGrpcApiDemo.csproj -------------------------------------------------------------------------------- /Example/Consumer/DBGrpcApiDemo/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Consumer/DBGrpcApiDemo/MainViewModel.cs -------------------------------------------------------------------------------- /Example/Consumer/DBGrpcApiDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Consumer/DBGrpcApiDemo/MainWindow.xaml -------------------------------------------------------------------------------- /Example/Consumer/DBGrpcApiDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Consumer/DBGrpcApiDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Example/Consumer/DBGrpcApiDemo/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Consumer/DBGrpcApiDemo/RelayCommand.cs -------------------------------------------------------------------------------- /Example/Consumer/HighSpeedApiDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Consumer/HighSpeedApiDemo/App.xaml -------------------------------------------------------------------------------- /Example/Consumer/HighSpeedApiDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Consumer/HighSpeedApiDemo/App.xaml.cs -------------------------------------------------------------------------------- /Example/Consumer/HighSpeedApiDemo/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Consumer/HighSpeedApiDemo/AssemblyInfo.cs -------------------------------------------------------------------------------- /Example/Consumer/HighSpeedApiDemo/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Consumer/HighSpeedApiDemo/MainViewModel.cs -------------------------------------------------------------------------------- /Example/Consumer/HighSpeedApiDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Consumer/HighSpeedApiDemo/MainWindow.xaml -------------------------------------------------------------------------------- /Example/Consumer/HighSpeedApiDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Consumer/HighSpeedApiDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Example/Consumer/HighSpeedApiDemo/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Consumer/HighSpeedApiDemo/RelayCommand.cs -------------------------------------------------------------------------------- /Example/Consumer/HighSpeedApiDemo/ResultDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Consumer/HighSpeedApiDemo/ResultDialog.xaml -------------------------------------------------------------------------------- /Example/Develop/DevelopWebApiDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Develop/DevelopWebApiDemo/App.xaml -------------------------------------------------------------------------------- /Example/Develop/DevelopWebApiDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Develop/DevelopWebApiDemo/App.xaml.cs -------------------------------------------------------------------------------- /Example/Develop/DevelopWebApiDemo/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Develop/DevelopWebApiDemo/AssemblyInfo.cs -------------------------------------------------------------------------------- /Example/Develop/DevelopWebApiDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Develop/DevelopWebApiDemo/MainWindow.xaml -------------------------------------------------------------------------------- /Example/Develop/DevelopWebApiDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Develop/DevelopWebApiDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Example/Producter/DirectAccessDriverApiDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Producter/DirectAccessDriverApiDemo/App.xaml -------------------------------------------------------------------------------- /Example/Producter/DirectAccessDriverMQTTDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Producter/DirectAccessDriverMQTTDemo/App.xaml -------------------------------------------------------------------------------- /Example/Producter/DriectAccessDriverDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Producter/DriectAccessDriverDemo/App.xaml -------------------------------------------------------------------------------- /Example/Producter/DriectAccessDriverDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Producter/DriectAccessDriverDemo/App.xaml.cs -------------------------------------------------------------------------------- /Example/Producter/SpiderDriverDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Producter/SpiderDriverDemo/App.xaml -------------------------------------------------------------------------------- /Example/Producter/SpiderDriverDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Producter/SpiderDriverDemo/App.xaml.cs -------------------------------------------------------------------------------- /Example/Producter/SpiderDriverDemo/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Producter/SpiderDriverDemo/AssemblyInfo.cs -------------------------------------------------------------------------------- /Example/Producter/SpiderDriverDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Producter/SpiderDriverDemo/MainWindow.xaml -------------------------------------------------------------------------------- /Example/Producter/SpiderDriverDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Example/Producter/SpiderDriverDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Array2DConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Array2DConverter.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Blazor.ECharts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Blazor.ECharts.csproj -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/ComponentBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/ComponentBase.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/EBar.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/EBar.razor -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/EBar.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/EBar.razor.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/ECandlestick.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/ECandlestick.razor -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/EChart.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/EChart.razor -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/EChart.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/EChart.razor.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/EFunnel.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/EFunnel.razor -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/EFunnel.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/EFunnel.razor.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/EGauge.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/EGauge.razor -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/EGauge.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/EGauge.razor.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/EGraph.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/EGraph.razor -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/EGraph.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/EGraph.razor.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/ELine.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/ELine.razor -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/ELine.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/ELine.razor.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/ELines.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/ELines.razor -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/ELines.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/ELines.razor.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/EMap.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/EMap.razor -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/EMap.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/EMap.razor.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/EPie.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/EPie.razor -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/EPie.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/EPie.razor.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/ERadar.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/ERadar.razor -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/ERadar.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/ERadar.razor.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/ESankey.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/ESankey.razor -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/ESankey.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/ESankey.razor.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/EScatter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/EScatter.razor -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/EScatter.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/EScatter.razor.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/ESunburst.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/ESunburst.razor -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/ESunburst.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/ESunburst.razor.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/ETree.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/ETree.razor -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/ETree.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/ETree.razor.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/ETreemap.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/ETreemap.razor -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Components/ETreemap.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Components/ETreemap.razor.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/EChartsDIExtends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/EChartsDIExtends.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/EventInvokeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/EventInvokeHelper.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/JFuncConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/JFuncConverter.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/JsInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/JsInterop.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/AngleAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/AngleAxis.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/AreaStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/AreaStyle.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Axis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Axis.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/AxisPointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/AxisPointer.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/BMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/BMap.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Brush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Brush.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Color.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/DataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/DataSet.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/DataZoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/DataZoom.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/EChartsBaseOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/EChartsBaseOption.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/EChartsOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/EChartsOption.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/EchartsEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/EchartsEventArgs.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/EchartsEventBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/EchartsEventBatch.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Effect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Effect.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Enum.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Graphic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Graphic.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Grid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Grid.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/HandleStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/HandleStyle.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/IPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/IPosition.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/JFunc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/JFunc.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Legend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Legend.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/LineStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/LineStyle.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/LoadingOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/LoadingOption.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Polar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Polar.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Radar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Radar.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/RadiusAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/RadiusAxis.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Rect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Rect.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/ScaleLimit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/ScaleLimit.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Series/Bar/Bar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Series/Bar/Bar.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Series/Detail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Series/Detail.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Series/Emphasis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Series/Emphasis.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Series/Encode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Series/Encode.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Series/ItemStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Series/ItemStyle.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Series/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Series/Label.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Series/Line/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Series/Line/Line.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Series/Map/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Series/Map/Map.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Series/MarkLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Series/MarkLine.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Series/MarkPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Series/MarkPoint.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Series/Pie/Pie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Series/Pie/Pie.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Series/Tree/Tree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Series/Tree/Tree.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/SeriesBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/SeriesBase.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/SplitArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/SplitArea.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/SplitLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/SplitLine.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/TextStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/TextStyle.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Timeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Timeline.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Title.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Title.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Toolbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Toolbox.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/Tooltip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/Tooltip.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/Options/VisualMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/Options/VisualMap.cs -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/_Imports.razor: -------------------------------------------------------------------------------- 1 | @using Microsoft.AspNetCore.Components.Web 2 | -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/wwwroot/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/wwwroot/background.png -------------------------------------------------------------------------------- /Extends/Blazor.ECharts/wwwroot/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/Blazor.ECharts/wwwroot/core.js -------------------------------------------------------------------------------- /Extends/DBWebMonitor/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/App.razor -------------------------------------------------------------------------------- /Extends/DBWebMonitor/DBWebMonitor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/DBWebMonitor.csproj -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Data/ISelectable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Data/ISelectable.cs -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Data/MarsProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Data/MarsProxy.cs -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Data/RuntimeClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Data/RuntimeClient.cs -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Data/TagViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Data/TagViewModel.cs -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Data/TreeItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Data/TreeItem.cs -------------------------------------------------------------------------------- /Extends/DBWebMonitor/InnerJS/InnerHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/InnerJS/InnerHelper.ts -------------------------------------------------------------------------------- /Extends/DBWebMonitor/InnerJS/InnerJsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/InnerJS/InnerJsHelper.cs -------------------------------------------------------------------------------- /Extends/DBWebMonitor/InnerJS/JSModuleInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/InnerJS/JSModuleInterop.cs -------------------------------------------------------------------------------- /Extends/DBWebMonitor/InnerJS/jquery/jquery.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/InnerJS/jquery/jquery.d.ts -------------------------------------------------------------------------------- /Extends/DBWebMonitor/InnerJS/jquery/jqueryui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/InnerJS/jquery/jqueryui.d.ts -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Pages/Datamonitor.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Pages/Datamonitor.razor -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Pages/Datamonitor.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Pages/Datamonitor.razor.css -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Pages/Error.cshtml -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Pages/Index.razor -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Pages/Login.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Pages/Login.razor -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Pages/Logmonitor.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Pages/Logmonitor.razor -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Pages/Main.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Pages/Main.razor -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Pages/Sqlquery.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Pages/Sqlquery.razor -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Pages/_Host.cshtml -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Pages/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Pages/_Layout.cshtml -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Program.cs -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Shared/HisValueViewer.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Shared/HisValueViewer.razor -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Shared/MainLayout.razor -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Shared/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Shared/MainLayout.razor.css -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Shared/MonitorString.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Shared/MonitorString.razor -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Shared/NavMenu.razor -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Shared/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Shared/NavMenu.razor.css -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Shared/PageNotifier.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Shared/PageNotifier.razor -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Shared/SingalLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Shared/SingalLayout.razor -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Shared/ToolBar.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Shared/ToolBar.razor -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Shared/TreeGroupView.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Shared/TreeGroupView.razor -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Shared/TreeItemView.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Shared/TreeItemView.razor -------------------------------------------------------------------------------- /Extends/DBWebMonitor/Shared/TreeItemView.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/Shared/TreeItemView.razor.css -------------------------------------------------------------------------------- /Extends/DBWebMonitor/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/_Imports.razor -------------------------------------------------------------------------------- /Extends/DBWebMonitor/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/appsettings.Development.json -------------------------------------------------------------------------------- /Extends/DBWebMonitor/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/appsettings.json -------------------------------------------------------------------------------- /Extends/DBWebMonitor/mrdbwm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/mrdbwm.ico -------------------------------------------------------------------------------- /Extends/DBWebMonitor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/tsconfig.json -------------------------------------------------------------------------------- /Extends/DBWebMonitor/wwwroot/InnerHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/wwwroot/InnerHelper.js -------------------------------------------------------------------------------- /Extends/DBWebMonitor/wwwroot/css/Image/Folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/wwwroot/css/Image/Folder.png -------------------------------------------------------------------------------- /Extends/DBWebMonitor/wwwroot/css/Image/Switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/wwwroot/css/Image/Switch.png -------------------------------------------------------------------------------- /Extends/DBWebMonitor/wwwroot/css/Image/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/wwwroot/css/Image/class.png -------------------------------------------------------------------------------- /Extends/DBWebMonitor/wwwroot/css/Image/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/wwwroot/css/Image/export.png -------------------------------------------------------------------------------- /Extends/DBWebMonitor/wwwroot/css/Image/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/wwwroot/css/Image/import.png -------------------------------------------------------------------------------- /Extends/DBWebMonitor/wwwroot/css/Image/mrdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/wwwroot/css/Image/mrdb.png -------------------------------------------------------------------------------- /Extends/DBWebMonitor/wwwroot/css/Image/rerun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/wwwroot/css/Image/rerun.png -------------------------------------------------------------------------------- /Extends/DBWebMonitor/wwwroot/css/Image/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/wwwroot/css/Image/save.png -------------------------------------------------------------------------------- /Extends/DBWebMonitor/wwwroot/css/Image/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/wwwroot/css/Image/setting.png -------------------------------------------------------------------------------- /Extends/DBWebMonitor/wwwroot/css/Image/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/wwwroot/css/Image/start.png -------------------------------------------------------------------------------- /Extends/DBWebMonitor/wwwroot/css/Image/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/wwwroot/css/Image/stop.png -------------------------------------------------------------------------------- /Extends/DBWebMonitor/wwwroot/css/Image/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/wwwroot/css/Image/tag.png -------------------------------------------------------------------------------- /Extends/DBWebMonitor/wwwroot/css/Image/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/wwwroot/css/Image/user.png -------------------------------------------------------------------------------- /Extends/DBWebMonitor/wwwroot/css/huoxing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/wwwroot/css/huoxing.jpg -------------------------------------------------------------------------------- /Extends/DBWebMonitor/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/wwwroot/css/site.css -------------------------------------------------------------------------------- /Extends/DBWebMonitor/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebMonitor/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Extends/DBWebStudio/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/App.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/DBWebStudio.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/DBWebStudio.csproj -------------------------------------------------------------------------------- /Extends/DBWebStudio/DBWebStudio.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/DBWebStudio.sln -------------------------------------------------------------------------------- /Extends/DBWebStudio/Data/IMenuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Data/IMenuService.cs -------------------------------------------------------------------------------- /Extends/DBWebStudio/Data/INotifyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Data/INotifyManager.cs -------------------------------------------------------------------------------- /Extends/DBWebStudio/Data/ISelectable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Data/ISelectable.cs -------------------------------------------------------------------------------- /Extends/DBWebStudio/Data/MarsProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Data/MarsProxy.cs -------------------------------------------------------------------------------- /Extends/DBWebStudio/Data/TagViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Data/TagViewModel.cs -------------------------------------------------------------------------------- /Extends/DBWebStudio/Data/TreeItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Data/TreeItem.cs -------------------------------------------------------------------------------- /Extends/DBWebStudio/Data/UserPermissionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Data/UserPermissionModel.cs -------------------------------------------------------------------------------- /Extends/DBWebStudio/InnerJS/InnerHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/InnerJS/InnerHelper.ts -------------------------------------------------------------------------------- /Extends/DBWebStudio/InnerJS/InnerJsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/InnerJS/InnerJsHelper.cs -------------------------------------------------------------------------------- /Extends/DBWebStudio/InnerJS/JSModuleInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/InnerJS/JSModuleInterop.cs -------------------------------------------------------------------------------- /Extends/DBWebStudio/InnerJS/jquery/jquery.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/InnerJS/jquery/jquery.d.ts -------------------------------------------------------------------------------- /Extends/DBWebStudio/InnerJS/jquery/jqueryui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/InnerJS/jquery/jqueryui.d.ts -------------------------------------------------------------------------------- /Extends/DBWebStudio/Pages/Classdetail.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Pages/Classdetail.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Pages/Currentusermanager.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Pages/Currentusermanager.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Pages/DatabaseSelect.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Pages/DatabaseSelect.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Pages/Databasepermission.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Pages/Databasepermission.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Pages/Databasesetting.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Pages/Databasesetting.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Pages/Error.cshtml -------------------------------------------------------------------------------- /Extends/DBWebStudio/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Extends/DBWebStudio/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Pages/Index.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Pages/Login.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Pages/Login.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Pages/NewDatabase.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Pages/NewDatabase.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Pages/Serverusermanager.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Pages/Serverusermanager.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Pages/Taggroupdetail.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Pages/Taggroupdetail.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Pages/Taggroupdetail.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Pages/Taggroupdetail.razor.css -------------------------------------------------------------------------------- /Extends/DBWebStudio/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Pages/_Host.cshtml -------------------------------------------------------------------------------- /Extends/DBWebStudio/Pages/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Pages/_Layout.cshtml -------------------------------------------------------------------------------- /Extends/DBWebStudio/Pages/classdetail.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Pages/classdetail.razor.css -------------------------------------------------------------------------------- /Extends/DBWebStudio/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Program.cs -------------------------------------------------------------------------------- /Extends/DBWebStudio/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Properties/launchSettings.json -------------------------------------------------------------------------------- /Extends/DBWebStudio/ReferenceDlls/Cdy.Tag.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/ReferenceDlls/Cdy.Tag.dll -------------------------------------------------------------------------------- /Extends/DBWebStudio/Shared/ComplexSubRow.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Shared/ComplexSubRow.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Shared/ComplexSubRow.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Shared/ComplexSubRow.razor.css -------------------------------------------------------------------------------- /Extends/DBWebStudio/Shared/ConvertControl.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Shared/ConvertControl.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Shared/CustomSelect.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Shared/CustomSelect.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Shared/MainLayout.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Shared/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Shared/MainLayout.razor.css -------------------------------------------------------------------------------- /Extends/DBWebStudio/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Shared/NavMenu.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Shared/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Shared/NavMenu.razor.css -------------------------------------------------------------------------------- /Extends/DBWebStudio/Shared/PageNotifier.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Shared/PageNotifier.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Shared/SingalLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Shared/SingalLayout.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Shared/StringEditor.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Shared/StringEditor.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Shared/SurveyPrompt.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Shared/ToolBar.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Shared/ToolBar.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Shared/TreeGroupView.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Shared/TreeGroupView.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Shared/TreeGroupView.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Shared/TreeGroupView.razor.css -------------------------------------------------------------------------------- /Extends/DBWebStudio/Shared/TreeItemView.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Shared/TreeItemView.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/Shared/TreeItemView.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/Shared/TreeItemView.razor.css -------------------------------------------------------------------------------- /Extends/DBWebStudio/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/_Imports.razor -------------------------------------------------------------------------------- /Extends/DBWebStudio/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/appsettings.Development.json -------------------------------------------------------------------------------- /Extends/DBWebStudio/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/appsettings.json -------------------------------------------------------------------------------- /Extends/DBWebStudio/mrdbws.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/mrdbws.ico -------------------------------------------------------------------------------- /Extends/DBWebStudio/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/tsconfig.json -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/InnerHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/InnerHelper.js -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/css/Image/Folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/css/Image/Folder.png -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/css/Image/Security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/css/Image/Security.png -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/css/Image/Switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/css/Image/Switch.png -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/css/Image/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/css/Image/class.png -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/css/Image/codetags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/css/Image/codetags.png -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/css/Image/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/css/Image/database.png -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/css/Image/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/css/Image/export.png -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/css/Image/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/css/Image/import.png -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/css/Image/mrdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/css/Image/mrdb.png -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/css/Image/rerun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/css/Image/rerun.png -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/css/Image/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/css/Image/save.png -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/css/Image/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/css/Image/setting.png -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/css/Image/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/css/Image/start.png -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/css/Image/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/css/Image/stop.png -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/css/Image/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/css/Image/tag.png -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/css/Image/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/css/Image/user.png -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/css/huoxing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/css/huoxing.jpg -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/css/site.css -------------------------------------------------------------------------------- /Extends/DBWebStudio/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/DBWebStudio/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Extends/扩展开发规范.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Extends/扩展开发规范.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/LICENSE -------------------------------------------------------------------------------- /Mars.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Mars.sln -------------------------------------------------------------------------------- /Proxy/DBGrpcApi.Client/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi.Client/Client.cs -------------------------------------------------------------------------------- /Proxy/DBGrpcApi.Client/DBGrpcApi.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi.Client/DBGrpcApi.Client.csproj -------------------------------------------------------------------------------- /Proxy/DBGrpcApi.Client/Protos/HisData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi.Client/Protos/HisData.proto -------------------------------------------------------------------------------- /Proxy/DBGrpcApi.Client/Protos/RealData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi.Client/Protos/RealData.proto -------------------------------------------------------------------------------- /Proxy/DBGrpcApi.Client/Protos/Security.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi.Client/Protos/Security.proto -------------------------------------------------------------------------------- /Proxy/DBGrpcApi.Client/Protos/TagInfo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi.Client/Protos/TagInfo.proto -------------------------------------------------------------------------------- /Proxy/DBGrpcApi/Config/DBGrpcApi.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi/Config/DBGrpcApi.cfg -------------------------------------------------------------------------------- /Proxy/DBGrpcApi/DBGrpcApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi/DBGrpcApi.csproj -------------------------------------------------------------------------------- /Proxy/DBGrpcApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi/Program.cs -------------------------------------------------------------------------------- /Proxy/DBGrpcApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /Proxy/DBGrpcApi/Protos/HisData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi/Protos/HisData.proto -------------------------------------------------------------------------------- /Proxy/DBGrpcApi/Protos/RealData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi/Protos/RealData.proto -------------------------------------------------------------------------------- /Proxy/DBGrpcApi/Protos/Security.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi/Protos/Security.proto -------------------------------------------------------------------------------- /Proxy/DBGrpcApi/Protos/TagInfo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi/Protos/TagInfo.proto -------------------------------------------------------------------------------- /Proxy/DBGrpcApi/SecurityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi/SecurityManager.cs -------------------------------------------------------------------------------- /Proxy/DBGrpcApi/Services/HisDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi/Services/HisDataService.cs -------------------------------------------------------------------------------- /Proxy/DBGrpcApi/Services/RealDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi/Services/RealDataService.cs -------------------------------------------------------------------------------- /Proxy/DBGrpcApi/Services/SecurityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi/Services/SecurityService.cs -------------------------------------------------------------------------------- /Proxy/DBGrpcApi/Services/TagInfoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi/Services/TagInfoService.cs -------------------------------------------------------------------------------- /Proxy/DBGrpcApi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi/Startup.cs -------------------------------------------------------------------------------- /Proxy/DBGrpcApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi/appsettings.Development.json -------------------------------------------------------------------------------- /Proxy/DBGrpcApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi/appsettings.json -------------------------------------------------------------------------------- /Proxy/DBGrpcApi/mrdbg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBGrpcApi/mrdbg.ico -------------------------------------------------------------------------------- /Proxy/DBHighApi.Client/ApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBHighApi.Client/ApiClient.cs -------------------------------------------------------------------------------- /Proxy/DBHighApi.Client/DBHighApi.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBHighApi.Client/DBHighApi.Client.csproj -------------------------------------------------------------------------------- /Proxy/DBHighApi/APIService/DataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBHighApi/APIService/DataService.cs -------------------------------------------------------------------------------- /Proxy/DBHighApi/APIService/HisDataServerProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBHighApi/APIService/HisDataServerProcess.cs -------------------------------------------------------------------------------- /Proxy/DBHighApi/APIService/ServerProcessBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBHighApi/APIService/ServerProcessBase.cs -------------------------------------------------------------------------------- /Proxy/DBHighApi/APIService/TagInfoServerProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBHighApi/APIService/TagInfoServerProcess.cs -------------------------------------------------------------------------------- /Proxy/DBHighApi/Config/DBHighApi.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBHighApi/Config/DBHighApi.cfg -------------------------------------------------------------------------------- /Proxy/DBHighApi/DBHighApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBHighApi/DBHighApi.csproj -------------------------------------------------------------------------------- /Proxy/DBHighApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBHighApi/Program.cs -------------------------------------------------------------------------------- /Proxy/DBHighApi/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBHighApi/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Proxy/DBHighApi/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBHighApi/Properties/Resources.resx -------------------------------------------------------------------------------- /Proxy/DBHighApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBHighApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /Proxy/DBHighApi/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBHighApi/Res.cs -------------------------------------------------------------------------------- /Proxy/DBHighApi/SecurityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBHighApi/SecurityManager.cs -------------------------------------------------------------------------------- /Proxy/DBHighApi/mrdbi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBHighApi/mrdbi.ico -------------------------------------------------------------------------------- /Proxy/DBHighApiEmbedded/APIService/DataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBHighApiEmbedded/APIService/DataService.cs -------------------------------------------------------------------------------- /Proxy/DBHighApiEmbedded/DBHighApiEmbedded.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBHighApiEmbedded/DBHighApiEmbedded.csproj -------------------------------------------------------------------------------- /Proxy/DBHighApiEmbedded/HighApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBHighApiEmbedded/HighApi.cs -------------------------------------------------------------------------------- /Proxy/DBOpcServer/Config/DBOpcServer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBOpcServer/Config/DBOpcServer.cfg -------------------------------------------------------------------------------- /Proxy/DBOpcServer/DBOpcServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBOpcServer/DBOpcServer.csproj -------------------------------------------------------------------------------- /Proxy/DBOpcServer/MarsNodeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBOpcServer/MarsNodeManager.cs -------------------------------------------------------------------------------- /Proxy/DBOpcServer/MarsOpcuaServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBOpcServer/MarsOpcuaServer.cs -------------------------------------------------------------------------------- /Proxy/DBOpcServer/MarsTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBOpcServer/MarsTag.cs -------------------------------------------------------------------------------- /Proxy/DBOpcServer/OPCServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBOpcServer/OPCServer.cs -------------------------------------------------------------------------------- /Proxy/DBOpcServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBOpcServer/Program.cs -------------------------------------------------------------------------------- /Proxy/DBOpcServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBOpcServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /Proxy/DBOpcServer/mrdbopc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DBOpcServer/mrdbopc.ico -------------------------------------------------------------------------------- /Proxy/DbInRunWebApi/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DbInRunWebApi/.config/dotnet-tools.json -------------------------------------------------------------------------------- /Proxy/DbInRunWebApi/Config/DbWebApi.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DbInRunWebApi/Config/DbWebApi.cfg -------------------------------------------------------------------------------- /Proxy/DbInRunWebApi/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DbInRunWebApi/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Proxy/DbInRunWebApi/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DbInRunWebApi/Controllers/LoginController.cs -------------------------------------------------------------------------------- /Proxy/DbInRunWebApi/DbWebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DbInRunWebApi/DbWebApi.csproj -------------------------------------------------------------------------------- /Proxy/DbInRunWebApi/DbWebApi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DbInRunWebApi/DbWebApi.xml -------------------------------------------------------------------------------- /Proxy/DbInRunWebApi/Model/LoginUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DbInRunWebApi/Model/LoginUser.cs -------------------------------------------------------------------------------- /Proxy/DbInRunWebApi/Model/RealValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DbInRunWebApi/Model/RealValue.cs -------------------------------------------------------------------------------- /Proxy/DbInRunWebApi/Model/Requestbase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DbInRunWebApi/Model/Requestbase.cs -------------------------------------------------------------------------------- /Proxy/DbInRunWebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DbInRunWebApi/Program.cs -------------------------------------------------------------------------------- /Proxy/DbInRunWebApi/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DbInRunWebApi/Properties/Resources.resx -------------------------------------------------------------------------------- /Proxy/DbInRunWebApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DbInRunWebApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /Proxy/DbInRunWebApi/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DbInRunWebApi/Res.cs -------------------------------------------------------------------------------- /Proxy/DbInRunWebApi/SecurityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DbInRunWebApi/SecurityManager.cs -------------------------------------------------------------------------------- /Proxy/DbInRunWebApi/WebAPIStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DbInRunWebApi/WebAPIStartup.cs -------------------------------------------------------------------------------- /Proxy/DbInRunWebApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DbInRunWebApi/appsettings.Development.json -------------------------------------------------------------------------------- /Proxy/DbInRunWebApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DbInRunWebApi/appsettings.json -------------------------------------------------------------------------------- /Proxy/DbInRunWebApi/mrdbw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DbInRunWebApi/mrdbw.ico -------------------------------------------------------------------------------- /Proxy/DbInRunWebApi/wwwroot/Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Proxy/DbInRunWebApi/wwwroot/Index.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/README.md -------------------------------------------------------------------------------- /RunTime/DBHisData/DBHisData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBHisData/DBHisData.csproj -------------------------------------------------------------------------------- /RunTime/DBHisData/HisQuery/DataFileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBHisData/HisQuery/DataFileManager.cs -------------------------------------------------------------------------------- /RunTime/DBHisData/HisQuery/HisQueryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBHisData/HisQuery/HisQueryManager.cs -------------------------------------------------------------------------------- /RunTime/DBHisData/HisQuery/QuerySerivce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBHisData/HisQuery/QuerySerivce.cs -------------------------------------------------------------------------------- /RunTime/DBHisData/HisQuery/TagHeadOffsetManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBHisData/HisQuery/TagHeadOffsetManager.cs -------------------------------------------------------------------------------- /RunTime/DBHisData/HisQuery/TimeFile/IDataFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBHisData/HisQuery/TimeFile/IDataFile.cs -------------------------------------------------------------------------------- /RunTime/DBHisData/HisQuery/TimeFile/LogFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBHisData/HisQuery/TimeFile/LogFileInfo.cs -------------------------------------------------------------------------------- /RunTime/DBHisData/obsolete/DataFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBHisData/obsolete/DataFileInfo.cs -------------------------------------------------------------------------------- /RunTime/DBHisData/obsolete/HisDataFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBHisData/obsolete/HisDataFileInfo.cs -------------------------------------------------------------------------------- /RunTime/DBHisDataServer/DBHisDataServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBHisDataServer/DBHisDataServer.csproj -------------------------------------------------------------------------------- /RunTime/DBHisDataServer/DataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBHisDataServer/DataService.cs -------------------------------------------------------------------------------- /RunTime/DBHisDataServer/HisDataServerProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBHisDataServer/HisDataServerProcess.cs -------------------------------------------------------------------------------- /RunTime/DBHisDataServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBHisDataServer/Program.cs -------------------------------------------------------------------------------- /RunTime/DBHisDataServer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBHisDataServer/Properties/Resources.resx -------------------------------------------------------------------------------- /RunTime/DBHisDataServer/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBHisDataServer/Res.cs -------------------------------------------------------------------------------- /RunTime/DBHisDataServer/Runner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBHisDataServer/Runner.cs -------------------------------------------------------------------------------- /RunTime/DBHisDataServer/ServerProcessBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBHisDataServer/ServerProcessBase.cs -------------------------------------------------------------------------------- /RunTime/DBHisDataServer/TagInfoServerProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBHisDataServer/TagInfoServerProcess.cs -------------------------------------------------------------------------------- /RunTime/DBHisDataServer/mrdbhs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBHisDataServer/mrdbhs.ico -------------------------------------------------------------------------------- /RunTime/DBInRun/DBInRun.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBInRun/DBInRun.csproj -------------------------------------------------------------------------------- /RunTime/DBInRun/DbInRun.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBInRun/DbInRun.cfg -------------------------------------------------------------------------------- /RunTime/DBInRun/Mars.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBInRun/Mars.sln -------------------------------------------------------------------------------- /RunTime/DBInRun/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBInRun/Program.cs -------------------------------------------------------------------------------- /RunTime/DBInRun/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBInRun/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RunTime/DBInRun/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBInRun/Properties/Resources.resx -------------------------------------------------------------------------------- /RunTime/DBInRun/Properties/Resources.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBInRun/Properties/Resources.zh-CN.resx -------------------------------------------------------------------------------- /RunTime/DBInRun/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBInRun/Properties/launchSettings.json -------------------------------------------------------------------------------- /RunTime/DBInRun/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBInRun/Res.cs -------------------------------------------------------------------------------- /RunTime/DBInRun/mrdb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBInRun/mrdb.ico -------------------------------------------------------------------------------- /RunTime/DBInRun/mrdbr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBInRun/mrdbr.ico -------------------------------------------------------------------------------- /RunTime/DBRunTime.ServiceApi/ApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRunTime.ServiceApi/ApiClient.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime.Proxy/DBRuntime.Proxy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime.Proxy/DBRuntime.Proxy.csproj -------------------------------------------------------------------------------- /RunTime/DBRuntime.Proxy/DatabaseRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime.Proxy/DatabaseRunner.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime.Proxy/DbServerProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime.Proxy/DbServerProxy.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime.Real/DBRuntime.Real.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime.Real/DBRuntime.Real.csproj -------------------------------------------------------------------------------- /RunTime/DBRuntime.Real/Real/RealEnginer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime.Real/Real/RealEnginer.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime.Real/Real/RealEnginer2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime.Real/Real/RealEnginer2.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime.Real/Security/SecurityRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime.Real/Security/SecurityRunner.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/Api/DataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Api/DataService.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/Api/HisDataServerProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Api/HisDataServerProcess.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/Api/IAPINotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Api/IAPINotify.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/Api/RealDataServerProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Api/RealDataServerProcess.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/Api/ServerProcessBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Api/ServerProcessBase.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/Api/TagInfoServerProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Api/TagInfoServerProcess.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/Config/Compress.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Config/Compress.cfg -------------------------------------------------------------------------------- /RunTime/DBRuntime/Config/DataFileSerise.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Config/DataFileSerise.cfg -------------------------------------------------------------------------------- /RunTime/DBRuntime/Config/Driver.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Config/Driver.cfg -------------------------------------------------------------------------------- /RunTime/DBRuntime/Config/EmbedProxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Config/EmbedProxy.cfg -------------------------------------------------------------------------------- /RunTime/DBRuntime/DBRuntime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/DBRuntime.csproj -------------------------------------------------------------------------------- /RunTime/DBRuntime/Driver/DriverManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Driver/DriverManager.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/CPUAssignHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/CPUAssignHelper.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/CachMemoryBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/CachMemoryBlock.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/Compress/CompressEnginer3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/Compress/CompressEnginer3.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/Compress/CompressEnginer4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/Compress/CompressEnginer4.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/Compress/CompressMemory3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/Compress/CompressMemory3.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/Compress/CompressMemory4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/Compress/CompressMemory4.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/HisDataArrange4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/HisDataArrange4.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/HisDataFileLocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/HisDataFileLocker.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/HisDataMemoryBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/HisDataMemoryBlock.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/HisDataPatchSeriser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/HisDataPatchSeriser.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/HisEnginer3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/HisEnginer3.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/HisEnginer4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/HisEnginer4.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/HisEnginer5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/HisEnginer5.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/HisdataRestore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/HisdataRestore.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/LocalFileSeriser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/LocalFileSeriser.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/LogManager3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/LogManager3.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/LogStorageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/LogStorageManager.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/LogStorageManager2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/LogStorageManager2.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/ManualHisDataMemoryBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/ManualHisDataMemoryBlock.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/MarshalMemoryBlockPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/MarshalMemoryBlockPool.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/MemoryBlockPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/MemoryBlockPool.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/MetaFileBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/MetaFileBlock.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/SeriseEnginer4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/SeriseEnginer4.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/SeriseEnginer5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/SeriseEnginer5.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/SeriseEnginer6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/SeriseEnginer6.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/SeriseEnginer7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/SeriseEnginer7.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/Tag/ByteHisRunTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/Tag/ByteHisRunTag.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/Tag/DateTimeHisRunTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/Tag/DateTimeHisRunTag.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/Tag/DoubleHisRunTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/Tag/DoubleHisRunTag.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/Tag/FloatHisRunTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/Tag/FloatHisRunTag.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/Tag/HisRunTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/Tag/HisRunTag.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/Tag/IntHisRunTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/Tag/IntHisRunTag.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/Tag/IntPoint3HisRunTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/Tag/IntPoint3HisRunTag.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/Tag/IntPointHisRunTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/Tag/IntPointHisRunTag.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/Tag/LongHisRunTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/Tag/LongHisRunTag.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/Tag/LongPoint3HisRunTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/Tag/LongPoint3HisRunTag.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/Tag/LongPointHisRunTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/Tag/LongPointHisRunTag.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/Tag/ShortHisRunTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/Tag/ShortHisRunTag.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/His/Tag/StringHisRunTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/His/Tag/StringHisRunTag.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/Interface/IDataCompress3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Interface/IDataCompress3.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/Interface/IDataSerialize3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Interface/IDataSerialize3.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/Interface/IDataSerialize4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Interface/IDataSerialize4.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/Interface/IHisDataPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Interface/IHisDataPatch.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/Interface/IHisEngine3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Interface/IHisEngine3.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Properties/Resources.resx -------------------------------------------------------------------------------- /RunTime/DBRuntime/Properties/Resources.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Properties/Resources.zh-CN.resx -------------------------------------------------------------------------------- /RunTime/DBRuntime/RDDC/DataSync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/RDDC/DataSync.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/RDDC/RDDCClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/RDDC/RDDCClient.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/RDDC/RDDCDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/RDDC/RDDCDataService.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/RDDC/RDDCManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/RDDC/RDDCManager.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/RDDC/RDDCServerProcessBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/RDDC/RDDCServerProcessBase.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/RDDC/WorStateServerProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/RDDC/WorStateServerProcess.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Res.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/Runner3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Runner3.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/Runner4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/Runner4.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/obsolete/CompressEnginer3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/obsolete/CompressEnginer3.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/obsolete/CompressMemory3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/obsolete/CompressMemory3.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/obsolete/HisEnginer3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/obsolete/HisEnginer3.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/obsolete/IDataSerialize3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/obsolete/IDataSerialize3.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/obsolete/LogManager3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/obsolete/LogManager3.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/obsolete/Runner3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/obsolete/Runner3.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/obsolete/SeriseEnginer4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/obsolete/SeriseEnginer4.cs -------------------------------------------------------------------------------- /RunTime/DBRuntime/obsolete/SeriseEnginer5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntime/obsolete/SeriseEnginer5.cs -------------------------------------------------------------------------------- /RunTime/DBRuntimeTests/DBRuntimeTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/DBRuntimeTests/DBRuntimeTests.csproj -------------------------------------------------------------------------------- /RunTime/RuntimeService/DBGuardian/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/RuntimeService/DBGuardian/Program.cs -------------------------------------------------------------------------------- /RunTime/RuntimeService/DBGuardian/mrdbg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/RuntimeService/DBGuardian/mrdbg.ico -------------------------------------------------------------------------------- /RunTime/RuntimeService/DBRuntimeAPI/ILogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/RuntimeService/DBRuntimeAPI/ILogService.cs -------------------------------------------------------------------------------- /RunTime/RuntimeService/DBRuntimeMonitor/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/RuntimeService/DBRuntimeMonitor/App.xaml -------------------------------------------------------------------------------- /RunTime/RuntimeService/DBRuntimeServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/RuntimeService/DBRuntimeServer/Program.cs -------------------------------------------------------------------------------- /RunTime/RuntimeService/DBRuntimeServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/RunTime/RuntimeService/DBRuntimeServer/Startup.cs -------------------------------------------------------------------------------- /Test/Cdy.Tag.CommonTests/Common/IdBufferTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Test/Cdy.Tag.CommonTests/Common/IdBufferTests.cs -------------------------------------------------------------------------------- /Test/Cdy.TagTests/Cdy.TagTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Test/Cdy.TagTests/Cdy.TagTests.csproj -------------------------------------------------------------------------------- /Test/Cdy.TagTests/Interface/ExpressFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Test/Cdy.TagTests/Interface/ExpressFilterTests.cs -------------------------------------------------------------------------------- /Test/DataRunnerTests/DataRunnerTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Test/DataRunnerTests/DataRunnerTests.csproj -------------------------------------------------------------------------------- /Test/DataRunnerTests/His/MemoryBlockTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Test/DataRunnerTests/His/MemoryBlockTests.cs -------------------------------------------------------------------------------- /Test/HisDataGenerator/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Test/HisDataGenerator/App.xaml -------------------------------------------------------------------------------- /Test/HisDataGenerator/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Test/HisDataGenerator/App.xaml.cs -------------------------------------------------------------------------------- /Test/HisDataGenerator/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Test/HisDataGenerator/AssemblyInfo.cs -------------------------------------------------------------------------------- /Test/HisDataGenerator/Config/Compress.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Test/HisDataGenerator/Config/Compress.cfg -------------------------------------------------------------------------------- /Test/HisDataGenerator/Config/DataFileSerise.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Test/HisDataGenerator/Config/DataFileSerise.cfg -------------------------------------------------------------------------------- /Test/HisDataGenerator/HisDataGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Test/HisDataGenerator/HisDataGenerator.csproj -------------------------------------------------------------------------------- /Test/HisDataGenerator/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Test/HisDataGenerator/MainWindow.xaml -------------------------------------------------------------------------------- /Test/HisDataGenerator/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Test/HisDataGenerator/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Tools/FileCodeGenerator/FileCodeGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/FileCodeGenerator/FileCodeGenerator.csproj -------------------------------------------------------------------------------- /Tools/FileCodeGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/FileCodeGenerator/Program.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/App.xaml -------------------------------------------------------------------------------- /Tools/HisDataTools/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/App.xaml.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/Chart/Brush/Bitmap/IBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Chart/Brush/Bitmap/IBitmap.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/Chart/Brush/Brushes/IBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Chart/Brush/Brushes/IBrush.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/Chart/ChartGeneric.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Chart/ChartGeneric.xaml -------------------------------------------------------------------------------- /Tools/HisDataTools/Chart/ICurveChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Chart/ICurveChart.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/Chart/Legend/Legend.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Chart/Legend/Legend.xaml -------------------------------------------------------------------------------- /Tools/HisDataTools/Chart/Legend/Legend.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Chart/Legend/Legend.xaml.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/Chart/Plotter/ChartPlotter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Chart/Plotter/ChartPlotter.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/Chart/Plotter/Common/PointC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Chart/Plotter/Common/PointC.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/Chart/Plotter/Marker/IMark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Chart/Plotter/Marker/IMark.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/Chart/Plotter/PlotterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Chart/Plotter/PlotterBase.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/Chart/Plotter/ViewPlotter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Chart/Plotter/ViewPlotter.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/Common/AutoFilterCombox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Common/AutoFilterCombox.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/Common/CustomWindowBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Common/CustomWindowBase.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/Common/DialogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Common/DialogHelper.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/Common/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Common/RelayCommand.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/Common/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Common/Res.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/Common/ResMarkerExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Common/ResMarkerExtension.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/Common/WindowViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Common/WindowViewModelBase.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/HisDataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/HisDataManager.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/HisDataTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/HisDataTools.csproj -------------------------------------------------------------------------------- /Tools/HisDataTools/Image/el-hg-icon-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Image/el-hg-icon-query.png -------------------------------------------------------------------------------- /Tools/HisDataTools/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/MainWindow.xaml -------------------------------------------------------------------------------- /Tools/HisDataTools/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/Output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Output -------------------------------------------------------------------------------- /Tools/HisDataTools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Properties/Resources.resx -------------------------------------------------------------------------------- /Tools/HisDataTools/Properties/Resources.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Properties/Resources.zh-CN.resx -------------------------------------------------------------------------------- /Tools/HisDataTools/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Properties/launchSettings.json -------------------------------------------------------------------------------- /Tools/HisDataTools/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/Themes/Generic.xaml -------------------------------------------------------------------------------- /Tools/HisDataTools/View/Convert/IndexConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/View/Convert/IndexConverter.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/View/HisDataQueryView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/View/HisDataQueryView.xaml -------------------------------------------------------------------------------- /Tools/HisDataTools/View/HisDataQueryView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/View/HisDataQueryView.xaml.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/View/ListDatabaseView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/View/ListDatabaseView.xaml -------------------------------------------------------------------------------- /Tools/HisDataTools/View/ListDatabaseView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/View/ListDatabaseView.xaml.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/ViewModel/HisDataQueryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/ViewModel/HisDataQueryItem.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/ViewModel/HisDataQueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/ViewModel/HisDataQueryModel.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/ViewModel/MainViewModel.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/ViewModel/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/ViewModel/ViewModelBase.cs -------------------------------------------------------------------------------- /Tools/HisDataTools/mrdbt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdy816/mars/HEAD/Tools/HisDataTools/mrdbt.ico --------------------------------------------------------------------------------