├── .dockerignore ├── .gitattributes ├── .gitignore ├── Dockerfile ├── Export_DeviceSettings_线上.xlsx ├── IoTGateway.DataAccess ├── DataContext.cs ├── IoTGateway.DataAccess.csproj └── Migrations │ ├── 20250404155722_Init.Designer.cs │ ├── 20250404155722_Init.cs │ ├── 20250404160000_CommentAndIndex.Designer.cs │ ├── 20250404160000_CommentAndIndex.cs │ └── DataContextModelSnapshot.cs ├── IoTGateway.Model ├── Common.cs ├── Device.cs ├── DeviceConfig.cs ├── DeviceVariable.cs ├── Driver.cs ├── FrameworkUser.cs ├── IVariable.cs ├── IoTGateway.Model.csproj ├── RpcLog.cs └── SystemConfig.cs ├── IoTGateway.Service ├── IoTGateway.Service.csproj └── MQTTService.cs ├── IoTGateway.ViewModel ├── BasicData │ ├── DeviceConfigVMs │ │ ├── DeviceConfigBatchVM.cs │ │ ├── DeviceConfigImportVM.cs │ │ ├── DeviceConfigListVM.cs │ │ ├── DeviceConfigSearcher.cs │ │ └── DeviceConfigVM.cs │ ├── DeviceVMs │ │ ├── AttributeVM.cs │ │ ├── CopyVM.cs │ │ ├── DeleteDevices.cs │ │ ├── DeviceApiBatchVM.cs │ │ ├── DeviceApiImportVM.cs │ │ ├── DeviceApiListVM.cs │ │ ├── DeviceApiSearcher.cs │ │ ├── DeviceApiVM.cs │ │ ├── DeviceBatchVM.cs │ │ ├── DeviceImportVM.cs │ │ ├── DeviceListVM.cs │ │ ├── DeviceSearcher.cs │ │ └── DeviceVM.cs │ ├── DeviceVariableVMs │ │ ├── DeviceVariableBatchVM.cs │ │ ├── DeviceVariableImportVM.cs │ │ ├── DeviceVariableListVM.cs │ │ ├── DeviceVariableSearcher.cs │ │ ├── DeviceVariableVM.cs │ │ └── SetValueVM.cs │ ├── DriverVMs │ │ ├── DriverBatchVM.cs │ │ ├── DriverImportVM.cs │ │ ├── DriverListVM.cs │ │ ├── DriverSearcher.cs │ │ └── DriverVM.cs │ ├── ExportDevicesSetting.cs │ ├── ImportExcelVM.cs │ └── UpdateDevices.cs ├── Config │ └── SystemConfigVMs │ │ ├── SystemConfigBatchVM.cs │ │ ├── SystemConfigImportVM.cs │ │ ├── SystemConfigListVM.cs │ │ ├── SystemConfigSearcher.cs │ │ └── SystemConfigVM.cs ├── HomeVMs │ ├── LoginVM.cs │ └── RegVM.cs ├── IoTGateway.ViewModel.csproj ├── MqttServer │ └── MqttClientVMs │ │ ├── MqttClientListVM.cs │ │ └── MqttClientSearcher.cs ├── Rpc │ └── RpcLogVMs │ │ ├── RpcLogBatchVM.cs │ │ ├── RpcLogImportVM.cs │ │ ├── RpcLogListVM.cs │ │ ├── RpcLogSearcher.cs │ │ └── RpcLogVM.cs └── _Admin │ ├── ActionLogVMs │ ├── ActionLogBatchVM.cs │ ├── ActionLogListVM.cs │ ├── ActionLogSearcher.cs │ └── ActionLogVM.cs │ ├── DataPrivilegeVMs │ ├── DataPrivilegeBatchVM.cs │ ├── DataPrivilegeListVM.cs │ ├── DataPrivilegeSearcher.cs │ ├── DataPrivilegeVM.cs │ └── DpListVM.cs │ ├── FrameworkGroupVMs │ ├── FrameworkGroupBatchVM.cs │ ├── FrameworkGroupImportVM.cs │ ├── FrameworkGroupListVM.cs │ ├── FrameworkGroupMDVM.cs │ ├── FrameworkGroupSearcher.cs │ └── FrameworkGroupVM.cs │ ├── FrameworkMenuVMs │ ├── FrameworkActionListVM.cs │ ├── FrameworkMenuBatchVM.cs │ ├── FrameworkMenuListVM.cs │ ├── FrameworkMenuListVM2.cs │ ├── FrameworkMenuSearcher.cs │ ├── FrameworkMenuVM.cs │ └── FrameworkMenuVM2.cs │ ├── FrameworkRoleVMs │ ├── FrameworkRoleBatchVM.cs │ ├── FrameworkRoleImportVM.cs │ ├── FrameworkRoleListVM.cs │ ├── FrameworkRoleMDVM.cs │ ├── FrameworkRoleMDVM2.cs │ ├── FrameworkRoleSearcher.cs │ └── FrameworkRoleVM.cs │ ├── FrameworkTenantVMs │ ├── FrameworkTenantBatchVM.cs │ ├── FrameworkTenantImportVM.cs │ ├── FrameworkTenantListVM.cs │ ├── FrameworkTenantSearcher.cs │ └── FrameworkTenantVM.cs │ └── FrameworkUserVms │ ├── ChangePasswordVM.cs │ ├── FrameworkUserBatchVM.cs │ ├── FrameworkUserImportVM.cs │ ├── FrameworkUserListVM.cs │ ├── FrameworkUserSearcher.cs │ └── FrameworkUserVM.cs ├── IoTGateway.sln ├── IoTGateway ├── Areas │ ├── API │ │ └── DeviceController.cs │ ├── BasicData │ │ ├── Controllers │ │ │ ├── DeviceApiController.cs │ │ │ ├── DeviceConfigController.cs │ │ │ ├── DeviceController.cs │ │ │ ├── DeviceVariableController.cs │ │ │ └── DriverController.cs │ │ └── Views │ │ │ ├── Device │ │ │ ├── Attribute.cshtml │ │ │ ├── BatchDelete.cshtml │ │ │ ├── BatchEdit.cshtml │ │ │ ├── Copy.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── CreateGroup.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Import.cshtml │ │ │ ├── ImportExcel.cshtml │ │ │ └── Index.cshtml │ │ │ ├── DeviceConfig │ │ │ ├── BatchDelete.cshtml │ │ │ ├── BatchEdit.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Import.cshtml │ │ │ └── Index.cshtml │ │ │ ├── DeviceVariable │ │ │ ├── BatchDelete.cshtml │ │ │ ├── BatchEdit.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Import.cshtml │ │ │ ├── Index.cshtml │ │ │ └── SetValue.cshtml │ │ │ └── Driver │ │ │ ├── BatchDelete.cshtml │ │ │ ├── BatchEdit.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Import.cshtml │ │ │ └── Index.cshtml │ ├── Config │ │ ├── Controllers │ │ │ └── SystemConfigController.cs │ │ └── Views │ │ │ └── SystemConfig │ │ │ ├── BatchDelete.cshtml │ │ │ ├── BatchEdit.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Import.cshtml │ │ │ └── Index.cshtml │ ├── MqttServer │ │ ├── Controllers │ │ │ └── MqttClientController.cs │ │ └── Views │ │ │ └── MqttClient │ │ │ └── Index.cshtml │ ├── Rpc │ │ ├── Controllers │ │ │ └── RpcLogController.cs │ │ └── Views │ │ │ └── RpcLog │ │ │ ├── BatchDelete.cshtml │ │ │ ├── BatchEdit.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Import.cshtml │ │ │ └── Index.cshtml │ ├── _Admin │ │ ├── ApiControllers │ │ │ ├── AccountController.cs │ │ │ ├── ActionLogController.cs │ │ │ ├── DataPrivilegeController.cs │ │ │ ├── FileApiController.cs │ │ │ ├── FrameworkGroupController.cs │ │ │ ├── FrameworkMenuController.cs │ │ │ ├── FrameworkRoleController.cs │ │ │ ├── FrameworkTenantController.cs │ │ │ └── FrameworkUserController.cs │ │ ├── Controllers │ │ │ ├── ActionLogController.cs │ │ │ ├── DataPrivilegeController.cs │ │ │ ├── FrameworkGroupController.cs │ │ │ ├── FrameworkMenuController.cs │ │ │ ├── FrameworkRoleController.cs │ │ │ ├── FrameworkTenantController.cs │ │ │ ├── FrameworkUserController.cs │ │ │ └── WorkflowController.cs │ │ └── Views │ │ │ ├── ActionLog │ │ │ ├── BatchDelete.cshtml │ │ │ ├── Details.cshtml │ │ │ └── Index.cshtml │ │ │ ├── DataPrivilege │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── FrameworkGroup │ │ │ ├── BatchDelete.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── DataFunction.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Import.cshtml │ │ │ └── Index.cshtml │ │ │ ├── FrameworkMenu │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Index.cshtml │ │ │ └── UnsetPages.cshtml │ │ │ ├── FrameworkRole │ │ │ ├── BatchDelete.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Import.cshtml │ │ │ ├── Index.cshtml │ │ │ └── PageFunction.cshtml │ │ │ ├── FrameworkTenant │ │ │ ├── BatchDelete.cshtml │ │ │ ├── BatchEdit.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Import.cshtml │ │ │ └── Index.cshtml │ │ │ ├── FrameworkUser │ │ │ ├── BatchDelete.cshtml │ │ │ ├── BatchEdit.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── Import.cshtml │ │ │ ├── Index.cshtml │ │ │ └── Password.cshtml │ │ │ ├── Workflow │ │ │ └── Index.cshtml │ │ │ └── _ViewImports.cshtml │ └── _ViewImports.cshtml ├── Controllers │ ├── HomeController.cs │ └── LoginController.cs ├── Dll │ ├── Fwlib32.dll │ ├── Fwlib64.dll │ ├── fwlib30i.dll │ ├── fwlib30i64.dll │ ├── fwlibe1.dll │ └── fwlibe64.dll ├── Extensions │ └── MqttExtension.cs ├── IoTGateway.csproj ├── MCP │ └── DeviceTool.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Resources │ ├── Program.en.resx │ └── Program.zh.resx ├── Startup.cs ├── Views │ ├── Home │ │ ├── FrontPage.cshtml │ │ ├── Index.cshtml │ │ ├── Layout.cshtml │ │ └── PIndex.cshtml │ ├── Login │ │ ├── ChangePassword.cshtml │ │ ├── Login.cshtml │ │ └── Reg.cshtml │ ├── Shared │ │ └── _Layout.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.json ├── data │ └── iotgateway.db ├── nlog.config └── wwwroot │ ├── 3d.zip │ ├── echarts │ ├── chalk.js │ ├── echarts.min.js │ ├── essos.js │ ├── json-fns.js │ ├── macarons.js │ ├── roma.js │ ├── vintage.js │ ├── walden.js │ ├── westeros.js │ └── wonderland.js │ ├── favicon.ico │ ├── font-awesome │ └── font-awesome.css │ ├── font │ ├── iconfont.css │ ├── iconfont.eot │ ├── iconfont.svg │ ├── iconfont.ttf │ ├── iconfont.woff │ └── iconfont.woff2 │ ├── images │ ├── 10.png │ ├── code.png │ ├── connectdevice.png │ ├── disconnectdevice.png │ ├── icon-login01.png │ ├── icon-login02.png │ ├── icon-login03.png │ ├── icon-login04.png │ ├── login-bj.png │ ├── logo.png │ ├── slogen.png │ ├── slogen2.png │ ├── wangguan.png │ ├── wangguan_1.png │ ├── wx.png │ ├── wxgroup.png │ ├── 公众号.jpg │ └── 小程序.jpg │ ├── index_dev.html │ ├── jquery.cookie.js │ ├── jquery.min.js │ ├── js-sdk-pro.min.js │ ├── layui │ ├── china.json │ ├── css │ │ ├── layui.css │ │ ├── layui.mobile.css │ │ └── modules │ │ │ ├── code.css │ │ │ ├── laydate │ │ │ └── default │ │ │ │ └── laydate.css │ │ │ ├── layer │ │ │ └── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── layer.css │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ │ └── layim │ │ │ ├── html │ │ │ ├── chatlog.html │ │ │ ├── find.html │ │ │ ├── getmsg.json │ │ │ └── msgbox.html │ │ │ ├── layim.css │ │ │ ├── mobile │ │ │ └── layim.css │ │ │ ├── skin │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── logo.jpg │ │ │ └── voice │ │ │ └── default.mp3 │ ├── font │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ ├── images │ │ └── face │ │ │ ├── 0.gif │ │ │ ├── 1.gif │ │ │ ├── 10.gif │ │ │ ├── 11.gif │ │ │ ├── 12.gif │ │ │ ├── 13.gif │ │ │ ├── 14.gif │ │ │ ├── 15.gif │ │ │ ├── 16.gif │ │ │ ├── 17.gif │ │ │ ├── 18.gif │ │ │ ├── 19.gif │ │ │ ├── 2.gif │ │ │ ├── 20.gif │ │ │ ├── 21.gif │ │ │ ├── 22.gif │ │ │ ├── 23.gif │ │ │ ├── 24.gif │ │ │ ├── 25.gif │ │ │ ├── 26.gif │ │ │ ├── 27.gif │ │ │ ├── 28.gif │ │ │ ├── 29.gif │ │ │ ├── 3.gif │ │ │ ├── 30.gif │ │ │ ├── 31.gif │ │ │ ├── 32.gif │ │ │ ├── 33.gif │ │ │ ├── 34.gif │ │ │ ├── 35.gif │ │ │ ├── 36.gif │ │ │ ├── 37.gif │ │ │ ├── 38.gif │ │ │ ├── 39.gif │ │ │ ├── 4.gif │ │ │ ├── 40.gif │ │ │ ├── 41.gif │ │ │ ├── 42.gif │ │ │ ├── 43.gif │ │ │ ├── 44.gif │ │ │ ├── 45.gif │ │ │ ├── 46.gif │ │ │ ├── 47.gif │ │ │ ├── 48.gif │ │ │ ├── 49.gif │ │ │ ├── 5.gif │ │ │ ├── 50.gif │ │ │ ├── 51.gif │ │ │ ├── 52.gif │ │ │ ├── 53.gif │ │ │ ├── 54.gif │ │ │ ├── 55.gif │ │ │ ├── 56.gif │ │ │ ├── 57.gif │ │ │ ├── 58.gif │ │ │ ├── 59.gif │ │ │ ├── 6.gif │ │ │ ├── 60.gif │ │ │ ├── 61.gif │ │ │ ├── 62.gif │ │ │ ├── 63.gif │ │ │ ├── 64.gif │ │ │ ├── 65.gif │ │ │ ├── 66.gif │ │ │ ├── 67.gif │ │ │ ├── 68.gif │ │ │ ├── 69.gif │ │ │ ├── 7.gif │ │ │ ├── 70.gif │ │ │ ├── 71.gif │ │ │ ├── 8.gif │ │ │ └── 9.gif │ ├── lay │ │ └── modules │ │ │ ├── carousel.js │ │ │ ├── code.js │ │ │ ├── colorpicker.js │ │ │ ├── element.js │ │ │ ├── flow.js │ │ │ ├── form.js │ │ │ ├── jquery.js │ │ │ ├── laydate.js │ │ │ ├── layedit.js │ │ │ ├── layer.js │ │ │ ├── layim.js │ │ │ ├── laypage.js │ │ │ ├── laytpl.js │ │ │ ├── mobile.js │ │ │ ├── rate.js │ │ │ ├── slider.js │ │ │ ├── table.js │ │ │ ├── transfer.js │ │ │ ├── tree.js │ │ │ ├── upload.js │ │ │ └── util.js │ ├── layui.js │ └── xm-select.js │ ├── layuiadmin │ ├── component │ │ ├── autocomplete.js │ │ ├── common.js │ │ ├── formSelects.js │ │ ├── ueditor.js │ │ └── ueditorconfig.js │ ├── config.js │ ├── css │ │ └── autocomplete.css │ ├── index.js │ ├── lib │ │ ├── admin.js │ │ ├── extend │ │ │ ├── echarts.js │ │ │ └── echartsTheme.js │ │ └── view.js │ ├── pindex.js │ ├── style │ │ ├── admin.css │ │ └── res │ │ │ ├── bg-none.jpg │ │ │ ├── layui-logo.jpg │ │ │ ├── logo-black.png │ │ │ ├── logo.png │ │ │ ├── wangguan.png │ │ │ └── wangguan_1.png │ ├── ueditor │ │ ├── config.json │ │ ├── dialogs │ │ │ ├── anchor │ │ │ │ └── anchor.html │ │ │ ├── attachment │ │ │ │ ├── attachment.css │ │ │ │ ├── attachment.html │ │ │ │ ├── attachment.js │ │ │ │ ├── fileTypeImages │ │ │ │ │ ├── icon_chm.gif │ │ │ │ │ ├── icon_default.png │ │ │ │ │ ├── icon_doc.gif │ │ │ │ │ ├── icon_exe.gif │ │ │ │ │ ├── icon_jpg.gif │ │ │ │ │ ├── icon_mp3.gif │ │ │ │ │ ├── icon_mv.gif │ │ │ │ │ ├── icon_pdf.gif │ │ │ │ │ ├── icon_ppt.gif │ │ │ │ │ ├── icon_psd.gif │ │ │ │ │ ├── icon_rar.gif │ │ │ │ │ ├── icon_txt.gif │ │ │ │ │ └── icon_xls.gif │ │ │ │ └── images │ │ │ │ │ ├── alignicon.gif │ │ │ │ │ ├── alignicon.png │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── background │ │ │ │ ├── background.css │ │ │ │ ├── background.html │ │ │ │ ├── background.js │ │ │ │ └── images │ │ │ │ │ ├── bg.png │ │ │ │ │ └── success.png │ │ │ ├── charts │ │ │ │ ├── chart.config.js │ │ │ │ ├── charts.css │ │ │ │ ├── charts.html │ │ │ │ ├── charts.js │ │ │ │ └── images │ │ │ │ │ ├── charts0.png │ │ │ │ │ ├── charts1.png │ │ │ │ │ ├── charts2.png │ │ │ │ │ ├── charts3.png │ │ │ │ │ ├── charts4.png │ │ │ │ │ └── charts5.png │ │ │ ├── emotion │ │ │ │ ├── emotion.css │ │ │ │ ├── emotion.html │ │ │ │ ├── emotion.js │ │ │ │ └── images │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── bface.gif │ │ │ │ │ ├── cface.gif │ │ │ │ │ ├── fface.gif │ │ │ │ │ ├── jxface2.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── tface.gif │ │ │ │ │ ├── wface.gif │ │ │ │ │ └── yface.gif │ │ │ ├── help │ │ │ │ ├── help.css │ │ │ │ ├── help.html │ │ │ │ └── help.js │ │ │ ├── image │ │ │ │ ├── image.css │ │ │ │ ├── image.html │ │ │ │ ├── image.js │ │ │ │ └── images │ │ │ │ │ ├── alignicon.jpg │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── internal.js │ │ │ ├── link │ │ │ │ └── link.html │ │ │ ├── map │ │ │ │ ├── map.html │ │ │ │ └── show.html │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scrawl │ │ │ │ ├── images │ │ │ │ │ ├── addimg.png │ │ │ │ │ ├── brush.png │ │ │ │ │ ├── delimg.png │ │ │ │ │ ├── delimgH.png │ │ │ │ │ ├── empty.png │ │ │ │ │ ├── emptyH.png │ │ │ │ │ ├── eraser.png │ │ │ │ │ ├── redo.png │ │ │ │ │ ├── redoH.png │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── scaleH.png │ │ │ │ │ ├── size.png │ │ │ │ │ ├── undo.png │ │ │ │ │ └── undoH.png │ │ │ │ ├── scrawl.css │ │ │ │ ├── scrawl.html │ │ │ │ └── scrawl.js │ │ │ ├── searchreplace │ │ │ │ ├── searchreplace.html │ │ │ │ └── searchreplace.js │ │ │ ├── spechars │ │ │ │ ├── spechars.html │ │ │ │ └── spechars.js │ │ │ ├── table │ │ │ │ ├── dragicon.png │ │ │ │ ├── edittable.css │ │ │ │ ├── edittable.html │ │ │ │ ├── edittable.js │ │ │ │ ├── edittd.html │ │ │ │ └── edittip.html │ │ │ └── template │ │ │ │ ├── config.js │ │ │ │ ├── images │ │ │ │ ├── bg.gif │ │ │ │ ├── pre0.png │ │ │ │ ├── pre1.png │ │ │ │ ├── pre2.png │ │ │ │ ├── pre3.png │ │ │ │ └── pre4.png │ │ │ │ ├── template.css │ │ │ │ ├── template.html │ │ │ │ └── template.js │ │ ├── lang │ │ │ ├── en │ │ │ │ ├── en.js │ │ │ │ └── images │ │ │ │ │ ├── addimage.png │ │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ │ ├── background.png │ │ │ │ │ ├── button.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── deletedisable.png │ │ │ │ │ ├── deleteenable.png │ │ │ │ │ ├── listbackground.png │ │ │ │ │ ├── localimage.png │ │ │ │ │ ├── music.png │ │ │ │ │ ├── rotateleftdisable.png │ │ │ │ │ ├── rotateleftenable.png │ │ │ │ │ ├── rotaterightdisable.png │ │ │ │ │ ├── rotaterightenable.png │ │ │ │ │ └── upload.png │ │ │ └── zh-cn │ │ │ │ ├── images │ │ │ │ ├── copy.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ └── upload.png │ │ │ │ └── zh-cn.js │ │ ├── themes │ │ │ ├── default │ │ │ │ ├── css │ │ │ │ │ ├── ueditor.css │ │ │ │ │ └── ueditor.min.css │ │ │ │ ├── dialogbase.css │ │ │ │ └── images │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_up.png │ │ │ │ │ ├── button-bg.gif │ │ │ │ │ ├── cancelbutton.gif │ │ │ │ │ ├── charts.png │ │ │ │ │ ├── cursor_h.gif │ │ │ │ │ ├── cursor_h.png │ │ │ │ │ ├── cursor_v.gif │ │ │ │ │ ├── cursor_v.png │ │ │ │ │ ├── dialog-title-bg.png │ │ │ │ │ ├── filescan.png │ │ │ │ │ ├── highlighted.gif │ │ │ │ │ ├── icons-all.gif │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── loaderror.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── lock.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── pagebreak.gif │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── spacer.gif │ │ │ │ │ ├── sparator_v.png │ │ │ │ │ ├── table-cell-align.png │ │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ │ ├── toolbar_bg.png │ │ │ │ │ ├── unhighlighted.gif │ │ │ │ │ ├── upload.png │ │ │ │ │ ├── videologo.gif │ │ │ │ │ ├── word.gif │ │ │ │ │ └── wordpaste.png │ │ │ └── iframe.css │ │ ├── third-party │ │ │ ├── SyntaxHighlighter │ │ │ │ ├── shCore.js │ │ │ │ └── shCoreDefault.css │ │ │ ├── codemirror │ │ │ │ ├── codemirror.css │ │ │ │ └── codemirror.js │ │ │ ├── highcharts │ │ │ │ ├── adapters │ │ │ │ │ ├── mootools-adapter.js │ │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ │ ├── prototype-adapter.js │ │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ │ ├── standalone-framework.js │ │ │ │ │ └── standalone-framework.src.js │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highcharts-more.src.js │ │ │ │ ├── highcharts.js │ │ │ │ ├── highcharts.src.js │ │ │ │ ├── modules │ │ │ │ │ ├── annotations.js │ │ │ │ │ ├── annotations.src.js │ │ │ │ │ ├── canvas-tools.js │ │ │ │ │ ├── canvas-tools.src.js │ │ │ │ │ ├── data.js │ │ │ │ │ ├── data.src.js │ │ │ │ │ ├── drilldown.js │ │ │ │ │ ├── drilldown.src.js │ │ │ │ │ ├── exporting.js │ │ │ │ │ ├── exporting.src.js │ │ │ │ │ ├── funnel.js │ │ │ │ │ ├── funnel.src.js │ │ │ │ │ ├── heatmap.js │ │ │ │ │ ├── heatmap.src.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── map.src.js │ │ │ │ │ ├── no-data-to-display.js │ │ │ │ │ └── no-data-to-display.src.js │ │ │ │ └── themes │ │ │ │ │ ├── dark-blue.js │ │ │ │ │ ├── dark-green.js │ │ │ │ │ ├── gray.js │ │ │ │ │ ├── grid.js │ │ │ │ │ └── skies.js │ │ │ ├── jquery-1.10.2.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-1.10.2.min.map │ │ │ ├── snapscreen │ │ │ │ └── UEditorSnapscreen.exe │ │ │ ├── video-js │ │ │ │ ├── font │ │ │ │ │ ├── vjs.eot │ │ │ │ │ ├── vjs.svg │ │ │ │ │ ├── vjs.ttf │ │ │ │ │ └── vjs.woff │ │ │ │ ├── video-js.css │ │ │ │ ├── video-js.min.css │ │ │ │ ├── video.dev.js │ │ │ │ └── video.js │ │ │ ├── webuploader │ │ │ │ ├── webuploader.css │ │ │ │ ├── webuploader.custom.js │ │ │ │ ├── webuploader.custom.min.js │ │ │ │ ├── webuploader.flashonly.js │ │ │ │ ├── webuploader.flashonly.min.js │ │ │ │ ├── webuploader.html5only.js │ │ │ │ ├── webuploader.html5only.min.js │ │ │ │ ├── webuploader.js │ │ │ │ ├── webuploader.min.js │ │ │ │ ├── webuploader.withoutimage.js │ │ │ │ └── webuploader.withoutimage.min.js │ │ │ ├── xss.min.js │ │ │ └── zeroclipboard │ │ │ │ ├── ZeroClipboard.js │ │ │ │ └── ZeroClipboard.min.js │ │ ├── ueditor.parse.js │ │ └── ueditor.parse.min.js │ └── views │ │ ├── system │ │ └── theme.html │ │ └── template │ │ └── tips │ │ ├── 404.html │ │ └── error.html │ ├── logo.png │ ├── mqtt.min.js │ └── sitecss │ ├── animate.min.css │ ├── logincss.css │ └── wtm.css ├── LICENSE ├── Plugins ├── Drivers │ ├── CNC.Fanuc.H │ │ ├── .vs │ │ │ ├── DriverFanuc │ │ │ │ └── v17 │ │ │ │ │ ├── .futdcache.v1 │ │ │ │ │ └── .suo │ │ │ └── ProjectEvaluation │ │ │ │ ├── driverfanuc.metadata.v2 │ │ │ │ └── driverfanuc.projects.v2 │ │ ├── CNC.Fanuc.H.csproj │ │ └── DeviceFanuc.cs │ ├── CNC.Fanuc │ │ ├── CNC.Fanuc.csproj │ │ ├── DeviceFanuc.cs │ │ ├── FanucFocas.cs │ │ ├── fwlib32.cs │ │ └── fwlib64.cs │ ├── CNC.MTConnect │ │ ├── CNC.MTConnect.csproj │ │ └── DeviceMTClient.cs │ ├── Mock.TcpClient │ │ ├── DeviceTcpClient.cs │ │ └── Mock.TcpClient.csproj │ ├── OPC.DaClient │ │ ├── DeviceDaClient.cs │ │ ├── OPC.DaClient.csproj │ │ └── OPCClient │ │ │ ├── Interop.OPCAutomation.dll │ │ │ ├── OPCChangeModel.cs │ │ │ ├── OPCClientWrapper.cs │ │ │ ├── OPCDataChangedHandler.cs │ │ │ ├── TagItem.cs │ │ │ ├── TagQuality.cs │ │ │ └── TagTreeNode.cs │ ├── OPC.UaClient │ │ ├── DeviceUaClient.cs │ │ ├── OPC.UaClient.csproj │ │ └── OpcUaHelper │ │ │ ├── FormUtils.cs │ │ │ ├── OpcUaClientHelper.cs │ │ │ └── OpcUaStatusEventArgs.cs │ ├── Other.Toledo │ │ ├── .vs │ │ │ ├── DriverWeightTcpClient │ │ │ │ ├── FileContentIndex │ │ │ │ │ ├── 6d9642ad-eef7-4197-ad88-fff9aa3edfb1.vsidx │ │ │ │ │ └── read.lock │ │ │ │ └── v17 │ │ │ │ │ ├── .futdcache.v1 │ │ │ │ │ └── .suo │ │ │ └── ProjectEvaluation │ │ │ │ ├── driverweighttcpclient.metadata.v2 │ │ │ │ └── driverweighttcpclient.projects.v2 │ │ ├── DeviceToledo.cs │ │ └── Other.Toledo.csproj │ ├── PLC.AllenBradley │ │ ├── DeviceAllenBradley.cs │ │ └── PLC.AllenBradley.csproj │ ├── PLC.MelsecMc │ │ ├── DeviceMelsecMc.cs │ │ └── PLC.MelsecMc.csproj │ ├── PLC.ModBusMaster │ │ ├── .vs │ │ │ └── DriverModbusMaster │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ └── v17 │ │ │ │ ├── .futdcache.v1 │ │ │ │ └── .suo │ │ ├── DeviceModBusMaster.cs │ │ ├── MasterType.cs │ │ ├── ModbusDataConver.cs │ │ ├── NModbus4 │ │ │ ├── Data │ │ │ │ ├── DataStore.cs │ │ │ │ ├── DataStoreEventArgs.cs │ │ │ │ ├── DataStoreFactory.cs │ │ │ │ ├── DiscreteCollection.cs │ │ │ │ ├── IModbusMessageDataCollection.cs │ │ │ │ ├── ModbusDataCollection.cs │ │ │ │ ├── ModbusDataType.cs │ │ │ │ └── RegisterCollection.cs │ │ │ ├── Device │ │ │ │ ├── IModbusMaster.cs │ │ │ │ ├── IModbusSerialMaster.cs │ │ │ │ ├── ModbusDevice.cs │ │ │ │ ├── ModbusIpMaster.cs │ │ │ │ ├── ModbusMaster.cs │ │ │ │ ├── ModbusMasterTcpConnection.cs │ │ │ │ ├── ModbusSerialMaster.cs │ │ │ │ ├── ModbusSerialSlave.cs │ │ │ │ ├── ModbusSlave.cs │ │ │ │ ├── ModbusSlaveRequestEventArgs.cs │ │ │ │ ├── ModbusTcpSlave.cs │ │ │ │ ├── ModbusUdpSlave.cs │ │ │ │ └── TcpConnectionEventArgs.cs │ │ │ ├── Extensions │ │ │ │ └── Enron │ │ │ │ │ └── EnronModbus.cs │ │ │ ├── GlobalSuppressions.cs │ │ │ ├── IO │ │ │ │ ├── EmptyTransport.cs │ │ │ │ ├── IStreamResource.cs │ │ │ │ ├── ModbusAsciiTransport.cs │ │ │ │ ├── ModbusIpTransport.cs │ │ │ │ ├── ModbusRtuTransport.cs │ │ │ │ ├── ModbusSerialTransport.cs │ │ │ │ ├── ModbusTransport.cs │ │ │ │ ├── StreamResourceUtility.cs │ │ │ │ ├── TcpClientAdapter.cs │ │ │ │ └── UdpClientAdapter.cs │ │ │ ├── InvalidModbusRequestException.cs │ │ │ ├── Message │ │ │ │ ├── AbstractModbusMessage.cs │ │ │ │ ├── AbstractModbusMessageWithData.cs │ │ │ │ ├── DiagnosticsRequestResponse.cs │ │ │ │ ├── IModbusMessage.cs │ │ │ │ ├── IModbusRequest.cs │ │ │ │ ├── ModbusMessageFactory.cs │ │ │ │ ├── ModbusMessageImpl.cs │ │ │ │ ├── ReadCoilsInputsRequest.cs │ │ │ │ ├── ReadCoilsInputsResponse.cs │ │ │ │ ├── ReadHoldingInputRegistersRequest.cs │ │ │ │ ├── ReadHoldingInputRegistersResponse.cs │ │ │ │ ├── ReadWriteMultipleRegistersRequest.cs │ │ │ │ ├── SlaveExceptionResponse.cs │ │ │ │ ├── WriteMultipleCoilsRequest.cs │ │ │ │ ├── WriteMultipleCoilsResponse.cs │ │ │ │ ├── WriteMultipleRegistersRequest.cs │ │ │ │ ├── WriteMultipleRegistersResponse.cs │ │ │ │ ├── WriteSingleCoilRequestResponse.cs │ │ │ │ └── WriteSingleRegisterRequestResponse.cs │ │ │ ├── Modbus.cs │ │ │ ├── Resources.cs │ │ │ ├── SerialPortAdapter.cs │ │ │ ├── SlaveException.cs │ │ │ ├── Unme.Common │ │ │ │ ├── DisposableUtility.cs │ │ │ │ └── SequenceUtility.cs │ │ │ └── Utility │ │ │ │ ├── DiscriminatedUnion.cs │ │ │ │ └── ModbusUtility.cs │ │ └── PLC.ModBusMaster.csproj │ ├── PLC.OmronFins │ │ ├── DeviceOmronFins.cs │ │ └── PLC.OmronFins.csproj │ └── PLC.SiemensS7 │ │ ├── DeviceSiemensS7.cs │ │ ├── PLC.SiemensS7.csproj │ │ └── S7.Net │ │ ├── COTP.cs │ │ ├── Compat │ │ └── TcpClientMixins.cs │ │ ├── Conversion.cs │ │ ├── Enums.cs │ │ ├── Helper │ │ └── MemoryStreamExtension.cs │ │ ├── Internal │ │ └── TaskQueue.cs │ │ ├── InvalidDataException.cs │ │ ├── PLC.cs │ │ ├── PLCAddress.cs │ │ ├── PLCExceptions.cs │ │ ├── PLCHelpers.cs │ │ ├── PlcAsynchronous.cs │ │ ├── PlcException.cs │ │ ├── PlcSynchronous.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── S7.Net.snk │ │ ├── Protocol │ │ ├── ConnectionRequest.cs │ │ ├── ReadWriteErrorCode.cs │ │ ├── S7 │ │ │ └── DataItemAddress.cs │ │ ├── S7WriteMultiple.cs │ │ ├── Serialization.cs │ │ ├── Tsap.cs │ │ └── TsapPair.cs │ │ ├── StreamExtensions.cs │ │ ├── TPKT.cs │ │ └── Types │ │ ├── Bit.cs │ │ ├── Boolean.cs │ │ ├── Byte.cs │ │ ├── ByteArray.cs │ │ ├── Class.cs │ │ ├── Counter.cs │ │ ├── DInt.cs │ │ ├── DWord.cs │ │ ├── DataItem.cs │ │ ├── DateTime.cs │ │ ├── DateTimeLong.cs │ │ ├── Double.cs │ │ ├── Int.cs │ │ ├── LReal.cs │ │ ├── Real.cs │ │ ├── S7String.cs │ │ ├── S7StringAttribute.cs │ │ ├── S7WString.cs │ │ ├── Single.cs │ │ ├── String.cs │ │ ├── StringEx.cs │ │ ├── Struct.cs │ │ ├── Timer.cs │ │ ├── TypeHelper.cs │ │ └── Word.cs ├── Plugin │ ├── ConnnectSettingsMode.cs │ ├── DeviceService.cs │ ├── DeviceThread.cs │ ├── DriverInfo.cs │ ├── DriverService.cs │ ├── Expression.cs │ ├── IoTBackgroundService.cs │ ├── JsonUtility.cs │ ├── MessageService.cs │ ├── ModbusSlaveService.cs │ ├── PlatformHandler │ │ ├── IPlatformHandler.cs │ │ ├── IoTSharpHandler.cs │ │ ├── PlatformHandlerFactory.cs │ │ ├── ThingsBoardHandler.cs │ │ ├── ThingsCloudHandler.cs │ │ └── ThingsPanelHandler.cs │ └── Plugin.csproj └── PluginInterface │ ├── ConfigParameterAttribute.cs │ ├── DataTypeEnum.cs │ ├── DriverAddressIoArgModel.cs │ ├── DriverInfoAttribute.cs │ ├── DriverReturnValueModel.cs │ ├── DriverSupportedAttribute.cs │ ├── EndianEnum.cs │ ├── HuaWeiRoma │ ├── HwAddDeviceDto.cs │ ├── HwDeleteDeviceDto.cs │ ├── HwDeviceOnOffLine.cs │ └── HwTelemetry.cs │ ├── IDependency.cs │ ├── IDriver.cs │ ├── IoTSharp │ ├── ISAttributeResponse.cs │ └── ISRpcResponse.cs │ ├── IotDB │ └── IotTsData.cs │ ├── MethodAttribute.cs │ ├── PluginInterface.csproj │ ├── ProtectTypeEnum.cs │ ├── RpcRequest.cs │ ├── RpcResponse.cs │ ├── SendModel.cs │ ├── ThingsBoard │ ├── TBRpcRequest.cs │ └── TBRpcResponse.cs │ ├── ThingsCloud │ └── TCRpcRequest.cs │ └── VaribaleStatusTypeEnum.cs ├── README.md ├── WalkingTec.Mvvm ├── WalkingTec.Mvvm.Core │ ├── Attributes │ │ ├── ActionDescriptionAttribute.cs │ │ ├── AllRightsAttribute.cs │ │ ├── CanNotEditAttribute.cs │ │ ├── DebugOnlyAttribute.cs │ │ ├── FixConnectionAttribute.cs │ │ ├── MainTenantOnly.cs │ │ ├── MiddleTableAttribute.cs │ │ ├── NoLogAttribute.cs │ │ ├── PublicAttribute.cs │ │ ├── ReInitAttribute.cs │ │ ├── SoftFKAttribute.cs │ │ ├── SoftKeyAttribute.cs │ │ └── ValidateFormItemOnlyAttribute.cs │ ├── BaseBatchVM.cs │ ├── BaseCRUDVM.cs │ ├── BaseImportVM.cs │ ├── BasePagedListVM.cs │ ├── BaseSearcher.cs │ ├── BaseTemplateVM.cs │ ├── BaseVM.cs │ ├── ConfigOptions │ │ ├── CS.cs │ │ ├── Configs.cs │ │ ├── CookieOptions.cs │ │ ├── Cors.cs │ │ ├── DFS.cs │ │ ├── DFSTracker.cs │ │ ├── DefaultConfigConsts.cs │ │ ├── Domain.cs │ │ ├── FileUploadOptions.cs │ │ ├── JwtOptions.cs │ │ ├── KV.cs │ │ ├── UEditorOptions.cs │ │ └── UIOptions.cs │ ├── CoreProgram.cs │ ├── DataContext.cs │ ├── Enums.cs │ ├── Exceptions │ │ └── NullOrEmptyStringException.cs │ ├── Extensions │ │ ├── ConfigExtension.cs │ │ ├── DCExtension.cs │ │ ├── DistinctExtension.cs │ │ ├── ITreeDataExtension.cs │ │ ├── ListExtension.cs │ │ ├── ListVMExtension.cs │ │ ├── LoginUserInfoExtension.cs │ │ ├── MenuExtension.cs │ │ ├── PagedListExtension.cs │ │ └── SystemExtensions │ │ │ ├── DateTimeHelper.cs │ │ │ ├── DictionaryExtension.cs │ │ │ ├── DistributedCacheExtensions.cs │ │ │ ├── EnumExtension.cs │ │ │ ├── StringExtension.cs │ │ │ ├── SystemExtension.cs │ │ │ └── TypeExtension.cs │ ├── GlobalConstants.cs │ ├── GlobalData.cs │ ├── GlobalServices.cs │ ├── Grid │ │ ├── GridAction.cs │ │ ├── GridActionExtension.cs │ │ ├── GridActionExtension`Old.cs │ │ ├── GridColumn.cs │ │ ├── GridColumnExtension`Old.cs │ │ ├── GridHeaderExtension.cs │ │ └── IGridColumn.cs │ ├── Helper │ │ ├── EntityHelper.cs │ │ ├── IServiceExtension.cs │ │ ├── LogDebug.cs │ │ ├── LogTrace.cs │ │ └── PropertyHelper.cs │ ├── IBasePagedListVM.cs │ ├── IBaseVM.cs │ ├── IDataContext.cs │ ├── ISessionService.cs │ ├── IUIService.cs │ ├── Implement │ │ └── DefaultUIService.cs │ ├── Json │ │ ├── BodyConverter.cs │ │ ├── BoolStringConverter.cs │ │ ├── DateRangeConverter.cs │ │ ├── DateTimeConverter.cs │ │ ├── DynamicDataConverter.cs │ │ ├── NullableConverter.cs │ │ ├── NullableEnumConverter.cs │ │ ├── PocoConverter.cs │ │ ├── RawStringConverter.cs │ │ ├── StringConverter.cs │ │ ├── StringIgnoreLTGTConverter.cs │ │ └── TypeConverter.cs │ ├── JsonResultModel.cs │ ├── LoginUserInfo.cs │ ├── MSD.cs │ ├── Models │ │ ├── ActionLog.cs │ │ ├── BasePoco.cs │ │ ├── DataPrivilege.cs │ │ ├── Elsa_Bookmark.cs │ │ ├── Elsa_Trigger.cs │ │ ├── Elsa_WorkflowDefinition.cs │ │ ├── Elsa_WorkflowExecutionLogRecord.cs │ │ ├── Elsa_WorkflowInstance.cs │ │ ├── FileAttachment.cs │ │ ├── FrameworkGroup.cs │ │ ├── FrameworkMenu.cs │ │ ├── FrameworkRole.cs │ │ ├── FrameworkTenant.cs │ │ ├── FrameworkUser.cs │ │ ├── FrameworkUserGroup.cs │ │ ├── FrameworkUserRole.cs │ │ ├── FrameworkWorkflow.cs │ │ ├── FunctionPrivilege.cs │ │ ├── ISearcher.cs │ │ ├── ISubFile.cs │ │ ├── ITenant.cs │ │ ├── IWorkflow.cs │ │ ├── IWtmFile.cs │ │ ├── PersistPoco.cs │ │ ├── TopBasePoco.cs │ │ └── TreePoco.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Support │ │ ├── AuthConstants.cs │ │ ├── ChartData.cs │ │ ├── ClaimComparer.cs │ │ ├── ColumnFormatInfo.cs │ │ ├── CommonEqualityComparer.cs │ │ ├── DataPrivilegeInfo.cs │ │ ├── DateRange.cs │ │ ├── DuplicateInfo.cs │ │ ├── DynamicData.cs │ │ ├── ExcelPropety.cs │ │ ├── ExpressionVisitors.cs │ │ ├── ExtraClass.cs │ │ ├── FileHandlers │ │ │ ├── IWtmFileHandler.cs │ │ │ ├── WtmDataBaseFileHandler.cs │ │ │ ├── WtmFileHandlerBase.cs │ │ │ ├── WtmFileProvider.cs │ │ │ ├── WtmLocalFileHandler.cs │ │ │ └── WtmOssFileHandler.cs │ │ ├── ITokenService.cs │ │ ├── Json │ │ │ ├── ApiListModel.cs │ │ │ ├── SimpleAction.cs │ │ │ ├── SimpleArea.cs │ │ │ ├── SimpleDataPri.cs │ │ │ ├── SimpleFunctionPri.cs │ │ │ ├── SimpleGroup.cs │ │ │ ├── SimpleLog.cs │ │ │ ├── SimpleMenu.cs │ │ │ ├── SimpleModule.cs │ │ │ ├── SimpleRole.cs │ │ │ ├── SimpleUserInfo.cs │ │ │ └── Token.cs │ │ ├── ListItem.cs │ │ ├── NugetInfo.cs │ │ ├── SupportedGroupMapping.cs │ │ ├── TypeComparer.cs │ │ ├── WTMLogger.cs │ │ ├── WebProxy.cs │ │ └── WtmLocalizationOption.cs │ ├── Utils.cs │ ├── WTMContext.cs │ ├── WalkingTec.Mvvm.Core.csproj │ └── WorkFlow │ │ ├── ApproveInfo.cs │ │ ├── ApproveTimeLine.cs │ │ ├── IApproveNotification.cs │ │ └── WtmApproveInput.cs ├── WalkingTec.Mvvm.Mvc │ ├── Auth │ │ ├── Attribute │ │ │ ├── AuthorizeCookieAttribute.cs │ │ │ ├── AuthorizeJwtAttribute.cs │ │ │ └── AuthorizeJwtWithCookieAttribute.cs │ │ └── JwtAuth │ │ │ └── TokenService.cs │ ├── BaseApiController.cs │ ├── BaseController.cs │ ├── Binders │ │ ├── DateRangeBinder.cs │ │ ├── EnumBinder.cs │ │ ├── NewtonsoftJsonFormatterAttribute.cs │ │ ├── StringBinderProvider.cs │ │ ├── StringIgnoreLTGTBinder.cs │ │ └── StringNeedLTGTAttribute.cs │ ├── CodeGenListVM.cs │ ├── CodeGenVM.cs │ ├── Filters │ │ ├── DataContextFilter.cs │ │ ├── FrameworkFilter.cs │ │ ├── PrivilegeFilter.cs │ │ └── SwaggerFilter.cs │ ├── GeneratorFiles │ │ ├── ApiTest.txt │ │ ├── ApiTestTopPoco.txt │ │ ├── BatchVM.txt │ │ ├── ControllerTest.txt │ │ ├── ControllerTestTopPoco.txt │ │ ├── CrudVM.txt │ │ ├── HeaderFormat.txt │ │ ├── ImportVM.txt │ │ ├── ListVM.txt │ │ ├── Mvc │ │ │ ├── BatchDeleteView.txt │ │ │ ├── BatchEditView.txt │ │ │ ├── Controller.txt │ │ │ ├── CreateView.txt │ │ │ ├── DeleteView.txt │ │ │ ├── DetailsView.txt │ │ │ ├── EditView.txt │ │ │ ├── ImportView.txt │ │ │ └── ListView.txt │ │ ├── Searcher.txt │ │ └── Spa │ │ │ ├── Blazor │ │ │ ├── Controller.txt │ │ │ ├── Create.txt │ │ │ ├── Details.txt │ │ │ ├── Edit.txt │ │ │ ├── Import.txt │ │ │ └── Index.txt │ │ │ ├── Controller.txt │ │ │ ├── React │ │ │ ├── index.txt │ │ │ ├── store │ │ │ │ └── index.txt │ │ │ ├── style.txt │ │ │ └── views │ │ │ │ ├── action.txt │ │ │ │ ├── forms.txt │ │ │ │ ├── models.txt │ │ │ │ ├── other.txt │ │ │ │ ├── search.txt │ │ │ │ └── table.txt │ │ │ ├── Vue │ │ │ ├── config.txt │ │ │ ├── index.txt │ │ │ ├── store │ │ │ │ ├── api.txt │ │ │ │ └── index.txt │ │ │ └── views │ │ │ │ └── dialog-form.txt │ │ │ └── Vue3 │ │ │ ├── Create.txt │ │ │ ├── Details.txt │ │ │ ├── Edit.txt │ │ │ ├── Import.txt │ │ │ ├── Index.txt │ │ │ └── indexapi.txt │ ├── Helper │ │ ├── ActionDescriptionExtension.cs │ │ ├── ActionExecutingContextExtension.cs │ │ ├── FResult.cs │ │ ├── FResultExtension.cs │ │ ├── FileExtension.cs │ │ ├── FrameworkServiceExtension.cs │ │ ├── HttpContextExtention.cs │ │ ├── IconFontsHelper.cs │ │ ├── JwtRefreshJob.cs │ │ ├── ModelStateExtension.cs │ │ ├── ModelStateServiceProvider.cs │ │ ├── MvcOptionExtension.cs │ │ ├── MyNewtonsoftJsonConvention.cs │ │ ├── RequestExtension.cs │ │ ├── SessionExtension.cs │ │ ├── SessionServiceProvider.cs │ │ ├── WtmContextOption.cs │ │ └── WtmMiddleware.cs │ ├── IBaseController.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── UEditor │ │ └── UEditorConfigJson.cs │ ├── Views │ │ ├── _CodeGen │ │ │ ├── Gen.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Preview.cshtml │ │ │ └── SetField.cshtml │ │ ├── _Framework │ │ │ └── Selector.cshtml │ │ └── _ViewImports.cshtml │ ├── WalkingTec.Mvvm.Mvc.csproj │ ├── _CodeGenController.cs │ ├── _FrameworkController.cs │ ├── _SetupController.cs │ ├── echarts.common.min.js │ ├── fonts │ │ ├── Candara.ttf │ │ ├── STCAIYUN.ttf │ │ ├── impact.ttf │ │ └── monbaiti.ttf │ └── framework_layui.js └── WalkingTec.Mvvm.TagHelpers.LayUI │ ├── Abstraction │ ├── BaseButton.cs │ ├── BaseElementTag.cs │ └── BaseFieldTag.cs │ ├── ButtonTagHelper.cs │ ├── CardTagHelper.cs │ ├── Chart │ └── ChartTagHelper.cs │ ├── CodeTagHelper.cs │ ├── Common │ └── LayuiUIService.cs │ ├── ContainerTagHelper.cs │ ├── DataTableTagHelper.cs │ ├── Enums │ ├── DataTableSizeEnum.cs │ ├── DataTableSkinEnum.cs │ └── HttpMethodEnum.cs │ ├── Form │ ├── CheckBoxTagHelper.cs │ ├── CloseButtonTagHelper.cs │ ├── ColorPicker.cs │ ├── ComboBoxTagHelper.cs │ ├── DateTimeTagHelper.cs │ ├── DisplayTagHelper.cs │ ├── DownloadTemplateButtonTagHelper.cs │ ├── FieldSetTagHelper.cs │ ├── FormTagHelper.cs │ ├── HiddenTagHelper.cs │ ├── MultiUploadTagHelper.cs │ ├── RadioTagHelper.cs │ ├── ResetButtonTagHelper.cs │ ├── RichTextBox.cs │ ├── SearchPanelTagHelper.cs │ ├── SelectorTagHelper.cs │ ├── SliderTagHelper.cs │ ├── SubmitButtonTagHelper.cs │ ├── SwitchTagHelper.cs │ ├── TextAreaTagHelper.cs │ ├── TextBoxTagHelper.cs │ ├── TransferTagHelper.cs │ ├── UEditorTagHelper.cs │ └── UploadTagHelper.cs │ ├── ImageTagHelper.cs │ ├── LayuiServiceCollectionExtensions.cs │ ├── LinkButtonTagHelper.cs │ ├── Models │ ├── LayuiColumn.cs │ └── LayuiTreeItem.cs │ ├── PanelTagHelper.cs │ ├── Program.cs │ ├── QuoteTagHelper.cs │ ├── RowTagHelper.cs │ ├── TabTagHelper.cs │ ├── TreeContainerTagHelper.cs │ ├── TreeTagHelper.cs │ └── WalkingTec.Mvvm.TagHelpers.LayUI.csproj ├── images ├── 3d.gif ├── ali-pay.png ├── change-upload.png ├── express.png ├── gitee.png ├── github.png ├── gvp.png ├── mqtt.png ├── official.png ├── online.png ├── opcua.png ├── qq.png ├── rpc.gif ├── scada-config.png ├── scada.gif ├── set-variable.png ├── variables.gif ├── wx-pay.jpg ├── wx.jpg └── wxgroup.png ├── iotgateway.net_bakup_202406010912327657.xlsx ├── iotgateway数据库.md └── webscada-project.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.javascript linguist-detectable=false 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Dockerfile -------------------------------------------------------------------------------- /Export_DeviceSettings_线上.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Export_DeviceSettings_线上.xlsx -------------------------------------------------------------------------------- /IoTGateway.DataAccess/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.DataAccess/DataContext.cs -------------------------------------------------------------------------------- /IoTGateway.DataAccess/IoTGateway.DataAccess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.DataAccess/IoTGateway.DataAccess.csproj -------------------------------------------------------------------------------- /IoTGateway.DataAccess/Migrations/20250404155722_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.DataAccess/Migrations/20250404155722_Init.Designer.cs -------------------------------------------------------------------------------- /IoTGateway.DataAccess/Migrations/20250404155722_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.DataAccess/Migrations/20250404155722_Init.cs -------------------------------------------------------------------------------- /IoTGateway.DataAccess/Migrations/DataContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.DataAccess/Migrations/DataContextModelSnapshot.cs -------------------------------------------------------------------------------- /IoTGateway.Model/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.Model/Common.cs -------------------------------------------------------------------------------- /IoTGateway.Model/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.Model/Device.cs -------------------------------------------------------------------------------- /IoTGateway.Model/DeviceConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.Model/DeviceConfig.cs -------------------------------------------------------------------------------- /IoTGateway.Model/DeviceVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.Model/DeviceVariable.cs -------------------------------------------------------------------------------- /IoTGateway.Model/Driver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.Model/Driver.cs -------------------------------------------------------------------------------- /IoTGateway.Model/FrameworkUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.Model/FrameworkUser.cs -------------------------------------------------------------------------------- /IoTGateway.Model/IVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.Model/IVariable.cs -------------------------------------------------------------------------------- /IoTGateway.Model/IoTGateway.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.Model/IoTGateway.Model.csproj -------------------------------------------------------------------------------- /IoTGateway.Model/RpcLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.Model/RpcLog.cs -------------------------------------------------------------------------------- /IoTGateway.Model/SystemConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.Model/SystemConfig.cs -------------------------------------------------------------------------------- /IoTGateway.Service/IoTGateway.Service.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.Service/IoTGateway.Service.csproj -------------------------------------------------------------------------------- /IoTGateway.Service/MQTTService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.Service/MQTTService.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DeviceConfigVMs/DeviceConfigVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DeviceConfigVMs/DeviceConfigVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DeviceVMs/AttributeVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DeviceVMs/AttributeVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DeviceVMs/CopyVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DeviceVMs/CopyVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DeviceVMs/DeleteDevices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DeviceVMs/DeleteDevices.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceApiBatchVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceApiBatchVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceApiImportVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceApiImportVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceApiListVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceApiListVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceApiSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceApiSearcher.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceApiVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceApiVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceBatchVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceBatchVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceImportVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceImportVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceListVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceListVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceSearcher.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DeviceVMs/DeviceVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DeviceVariableVMs/SetValueVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DeviceVariableVMs/SetValueVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DriverVMs/DriverBatchVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DriverVMs/DriverBatchVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DriverVMs/DriverImportVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DriverVMs/DriverImportVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DriverVMs/DriverListVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DriverVMs/DriverListVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DriverVMs/DriverSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DriverVMs/DriverSearcher.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/DriverVMs/DriverVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/DriverVMs/DriverVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/ExportDevicesSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/ExportDevicesSetting.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/ImportExcelVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/ImportExcelVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/BasicData/UpdateDevices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/BasicData/UpdateDevices.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/Config/SystemConfigVMs/SystemConfigListVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/Config/SystemConfigVMs/SystemConfigListVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/Config/SystemConfigVMs/SystemConfigVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/Config/SystemConfigVMs/SystemConfigVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/HomeVMs/LoginVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/HomeVMs/LoginVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/HomeVMs/RegVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/HomeVMs/RegVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/IoTGateway.ViewModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/IoTGateway.ViewModel.csproj -------------------------------------------------------------------------------- /IoTGateway.ViewModel/MqttServer/MqttClientVMs/MqttClientListVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/MqttServer/MqttClientVMs/MqttClientListVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/Rpc/RpcLogVMs/RpcLogBatchVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/Rpc/RpcLogVMs/RpcLogBatchVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/Rpc/RpcLogVMs/RpcLogImportVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/Rpc/RpcLogVMs/RpcLogImportVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/Rpc/RpcLogVMs/RpcLogListVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/Rpc/RpcLogVMs/RpcLogListVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/Rpc/RpcLogVMs/RpcLogSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/Rpc/RpcLogVMs/RpcLogSearcher.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/Rpc/RpcLogVMs/RpcLogVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/Rpc/RpcLogVMs/RpcLogVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/_Admin/ActionLogVMs/ActionLogBatchVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/_Admin/ActionLogVMs/ActionLogBatchVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/_Admin/ActionLogVMs/ActionLogListVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/_Admin/ActionLogVMs/ActionLogListVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/_Admin/ActionLogVMs/ActionLogSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/_Admin/ActionLogVMs/ActionLogSearcher.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/_Admin/ActionLogVMs/ActionLogVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/_Admin/ActionLogVMs/ActionLogVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/_Admin/DataPrivilegeVMs/DataPrivilegeVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/_Admin/DataPrivilegeVMs/DataPrivilegeVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/_Admin/DataPrivilegeVMs/DpListVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/_Admin/DataPrivilegeVMs/DpListVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/_Admin/FrameworkGroupVMs/FrameworkGroupVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/_Admin/FrameworkGroupVMs/FrameworkGroupVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/_Admin/FrameworkMenuVMs/FrameworkMenuVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/_Admin/FrameworkMenuVMs/FrameworkMenuVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/_Admin/FrameworkMenuVMs/FrameworkMenuVM2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/_Admin/FrameworkMenuVMs/FrameworkMenuVM2.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/_Admin/FrameworkRoleVMs/FrameworkRoleMDVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/_Admin/FrameworkRoleVMs/FrameworkRoleMDVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/_Admin/FrameworkRoleVMs/FrameworkRoleVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/_Admin/FrameworkRoleVMs/FrameworkRoleVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/_Admin/FrameworkUserVms/ChangePasswordVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/_Admin/FrameworkUserVms/ChangePasswordVM.cs -------------------------------------------------------------------------------- /IoTGateway.ViewModel/_Admin/FrameworkUserVms/FrameworkUserVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.ViewModel/_Admin/FrameworkUserVms/FrameworkUserVM.cs -------------------------------------------------------------------------------- /IoTGateway.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway.sln -------------------------------------------------------------------------------- /IoTGateway/Areas/API/DeviceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/API/DeviceController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Controllers/DeviceApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Controllers/DeviceApiController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Controllers/DeviceConfigController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Controllers/DeviceConfigController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Controllers/DeviceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Controllers/DeviceController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Controllers/DriverController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Controllers/DriverController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Device/Attribute.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Device/Attribute.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Device/BatchDelete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Device/BatchDelete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Device/BatchEdit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Device/BatchEdit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Device/Copy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Device/Copy.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Device/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Device/Create.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Device/CreateGroup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Device/CreateGroup.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Device/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Device/Delete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Device/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Device/Details.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Device/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Device/Edit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Device/Import.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Device/Import.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Device/ImportExcel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Device/ImportExcel.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Device/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Device/Index.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/DeviceConfig/BatchDelete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/DeviceConfig/BatchDelete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/DeviceConfig/BatchEdit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/DeviceConfig/BatchEdit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/DeviceConfig/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/DeviceConfig/Create.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/DeviceConfig/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/DeviceConfig/Delete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/DeviceConfig/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/DeviceConfig/Details.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/DeviceConfig/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/DeviceConfig/Edit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/DeviceConfig/Import.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/DeviceConfig/Import.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/DeviceConfig/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/DeviceConfig/Index.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/DeviceVariable/BatchEdit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/DeviceVariable/BatchEdit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/DeviceVariable/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/DeviceVariable/Create.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/DeviceVariable/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/DeviceVariable/Delete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/DeviceVariable/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/DeviceVariable/Details.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/DeviceVariable/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/DeviceVariable/Edit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/DeviceVariable/Import.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/DeviceVariable/Import.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/DeviceVariable/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/DeviceVariable/Index.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/DeviceVariable/SetValue.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/DeviceVariable/SetValue.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Driver/BatchDelete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Driver/BatchDelete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Driver/BatchEdit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Driver/BatchEdit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Driver/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Driver/Create.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Driver/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Driver/Delete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Driver/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Driver/Details.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Driver/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Driver/Edit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Driver/Import.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Driver/Import.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/BasicData/Views/Driver/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/BasicData/Views/Driver/Index.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/Config/Controllers/SystemConfigController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/Config/Controllers/SystemConfigController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/Config/Views/SystemConfig/BatchDelete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/Config/Views/SystemConfig/BatchDelete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/Config/Views/SystemConfig/BatchEdit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/Config/Views/SystemConfig/BatchEdit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/Config/Views/SystemConfig/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/Config/Views/SystemConfig/Create.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/Config/Views/SystemConfig/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/Config/Views/SystemConfig/Delete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/Config/Views/SystemConfig/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/Config/Views/SystemConfig/Details.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/Config/Views/SystemConfig/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/Config/Views/SystemConfig/Edit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/Config/Views/SystemConfig/Import.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/Config/Views/SystemConfig/Import.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/Config/Views/SystemConfig/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/Config/Views/SystemConfig/Index.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/MqttServer/Controllers/MqttClientController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/MqttServer/Controllers/MqttClientController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/MqttServer/Views/MqttClient/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/MqttServer/Views/MqttClient/Index.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/Rpc/Controllers/RpcLogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/Rpc/Controllers/RpcLogController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/Rpc/Views/RpcLog/BatchDelete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/Rpc/Views/RpcLog/BatchDelete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/Rpc/Views/RpcLog/BatchEdit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/Rpc/Views/RpcLog/BatchEdit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/Rpc/Views/RpcLog/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/Rpc/Views/RpcLog/Create.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/Rpc/Views/RpcLog/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/Rpc/Views/RpcLog/Delete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/Rpc/Views/RpcLog/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/Rpc/Views/RpcLog/Details.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/Rpc/Views/RpcLog/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/Rpc/Views/RpcLog/Edit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/Rpc/Views/RpcLog/Import.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/Rpc/Views/RpcLog/Import.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/Rpc/Views/RpcLog/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/Rpc/Views/RpcLog/Index.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/ApiControllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/ApiControllers/AccountController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/ApiControllers/ActionLogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/ApiControllers/ActionLogController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/ApiControllers/DataPrivilegeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/ApiControllers/DataPrivilegeController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/ApiControllers/FileApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/ApiControllers/FileApiController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/ApiControllers/FrameworkMenuController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/ApiControllers/FrameworkMenuController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/ApiControllers/FrameworkRoleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/ApiControllers/FrameworkRoleController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/ApiControllers/FrameworkUserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/ApiControllers/FrameworkUserController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Controllers/ActionLogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Controllers/ActionLogController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Controllers/DataPrivilegeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Controllers/DataPrivilegeController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Controllers/FrameworkGroupController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Controllers/FrameworkGroupController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Controllers/FrameworkMenuController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Controllers/FrameworkMenuController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Controllers/FrameworkRoleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Controllers/FrameworkRoleController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Controllers/FrameworkTenantController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Controllers/FrameworkTenantController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Controllers/FrameworkUserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Controllers/FrameworkUserController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Controllers/WorkflowController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Controllers/WorkflowController.cs -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/ActionLog/BatchDelete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/ActionLog/BatchDelete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/ActionLog/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/ActionLog/Details.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/ActionLog/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/ActionLog/Index.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/DataPrivilege/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/DataPrivilege/Create.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/DataPrivilege/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/DataPrivilege/Edit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/DataPrivilege/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/DataPrivilege/Index.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkGroup/BatchDelete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkGroup/BatchDelete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkGroup/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkGroup/Create.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkGroup/DataFunction.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkGroup/DataFunction.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkGroup/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkGroup/Delete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkGroup/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkGroup/Edit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkGroup/Import.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkGroup/Import.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkGroup/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkGroup/Index.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkMenu/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkMenu/Create.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkMenu/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkMenu/Delete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkMenu/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkMenu/Details.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkMenu/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkMenu/Edit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkMenu/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkMenu/Index.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkMenu/UnsetPages.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkMenu/UnsetPages.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkRole/BatchDelete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkRole/BatchDelete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkRole/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkRole/Create.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkRole/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkRole/Delete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkRole/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkRole/Details.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkRole/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkRole/Edit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkRole/Import.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkRole/Import.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkRole/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkRole/Index.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkRole/PageFunction.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkRole/PageFunction.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkTenant/BatchDelete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkTenant/BatchDelete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkTenant/BatchEdit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkTenant/BatchEdit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkTenant/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkTenant/Create.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkTenant/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkTenant/Delete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkTenant/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkTenant/Details.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkTenant/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkTenant/Edit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkTenant/Import.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkTenant/Import.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkTenant/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkTenant/Index.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkUser/BatchDelete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkUser/BatchDelete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkUser/BatchEdit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkUser/BatchEdit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkUser/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkUser/Create.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkUser/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkUser/Delete.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkUser/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkUser/Details.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkUser/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkUser/Edit.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkUser/Import.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkUser/Import.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkUser/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkUser/Index.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/FrameworkUser/Password.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/FrameworkUser/Password.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/Workflow/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/Workflow/Index.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_Admin/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_Admin/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /IoTGateway/Areas/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Areas/_ViewImports.cshtml -------------------------------------------------------------------------------- /IoTGateway/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Controllers/HomeController.cs -------------------------------------------------------------------------------- /IoTGateway/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Controllers/LoginController.cs -------------------------------------------------------------------------------- /IoTGateway/Dll/Fwlib32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Dll/Fwlib32.dll -------------------------------------------------------------------------------- /IoTGateway/Dll/Fwlib64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Dll/Fwlib64.dll -------------------------------------------------------------------------------- /IoTGateway/Dll/fwlib30i.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Dll/fwlib30i.dll -------------------------------------------------------------------------------- /IoTGateway/Dll/fwlib30i64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Dll/fwlib30i64.dll -------------------------------------------------------------------------------- /IoTGateway/Dll/fwlibe1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Dll/fwlibe1.dll -------------------------------------------------------------------------------- /IoTGateway/Dll/fwlibe64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Dll/fwlibe64.dll -------------------------------------------------------------------------------- /IoTGateway/Extensions/MqttExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Extensions/MqttExtension.cs -------------------------------------------------------------------------------- /IoTGateway/IoTGateway.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/IoTGateway.csproj -------------------------------------------------------------------------------- /IoTGateway/MCP/DeviceTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/MCP/DeviceTool.cs -------------------------------------------------------------------------------- /IoTGateway/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Program.cs -------------------------------------------------------------------------------- /IoTGateway/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Properties/launchSettings.json -------------------------------------------------------------------------------- /IoTGateway/Resources/Program.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Resources/Program.en.resx -------------------------------------------------------------------------------- /IoTGateway/Resources/Program.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Resources/Program.zh.resx -------------------------------------------------------------------------------- /IoTGateway/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Startup.cs -------------------------------------------------------------------------------- /IoTGateway/Views/Home/FrontPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Views/Home/FrontPage.cshtml -------------------------------------------------------------------------------- /IoTGateway/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /IoTGateway/Views/Home/Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Views/Home/Layout.cshtml -------------------------------------------------------------------------------- /IoTGateway/Views/Home/PIndex.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Views/Home/PIndex.cshtml -------------------------------------------------------------------------------- /IoTGateway/Views/Login/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Views/Login/ChangePassword.cshtml -------------------------------------------------------------------------------- /IoTGateway/Views/Login/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Views/Login/Login.cshtml -------------------------------------------------------------------------------- /IoTGateway/Views/Login/Reg.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Views/Login/Reg.cshtml -------------------------------------------------------------------------------- /IoTGateway/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /IoTGateway/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /IoTGateway/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /IoTGateway/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/appsettings.json -------------------------------------------------------------------------------- /IoTGateway/data/iotgateway.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/data/iotgateway.db -------------------------------------------------------------------------------- /IoTGateway/nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/nlog.config -------------------------------------------------------------------------------- /IoTGateway/wwwroot/3d.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/3d.zip -------------------------------------------------------------------------------- /IoTGateway/wwwroot/echarts/chalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/echarts/chalk.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/echarts/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/echarts/echarts.min.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/echarts/essos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/echarts/essos.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/echarts/json-fns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/echarts/json-fns.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/echarts/macarons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/echarts/macarons.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/echarts/roma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/echarts/roma.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/echarts/vintage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/echarts/vintage.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/echarts/walden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/echarts/walden.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/echarts/westeros.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/echarts/westeros.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/echarts/wonderland.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/echarts/wonderland.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/favicon.ico -------------------------------------------------------------------------------- /IoTGateway/wwwroot/font-awesome/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/font-awesome/font-awesome.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/font/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/font/iconfont.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/font/iconfont.eot -------------------------------------------------------------------------------- /IoTGateway/wwwroot/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/font/iconfont.svg -------------------------------------------------------------------------------- /IoTGateway/wwwroot/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/font/iconfont.ttf -------------------------------------------------------------------------------- /IoTGateway/wwwroot/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/font/iconfont.woff -------------------------------------------------------------------------------- /IoTGateway/wwwroot/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/font/iconfont.woff2 -------------------------------------------------------------------------------- /IoTGateway/wwwroot/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/images/10.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/images/code.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/images/connectdevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/images/connectdevice.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/images/disconnectdevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/images/disconnectdevice.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/images/icon-login01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/images/icon-login01.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/images/icon-login02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/images/icon-login02.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/images/icon-login03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/images/icon-login03.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/images/icon-login04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/images/icon-login04.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/images/login-bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/images/login-bj.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/images/logo.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/images/slogen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/images/slogen.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/images/slogen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/images/slogen2.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/images/wangguan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/images/wangguan.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/images/wangguan_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/images/wangguan_1.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/images/wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/images/wx.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/images/wxgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/images/wxgroup.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/images/公众号.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/images/公众号.jpg -------------------------------------------------------------------------------- /IoTGateway/wwwroot/images/小程序.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/images/小程序.jpg -------------------------------------------------------------------------------- /IoTGateway/wwwroot/index_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/index_dev.html -------------------------------------------------------------------------------- /IoTGateway/wwwroot/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/jquery.cookie.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/jquery.min.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/js-sdk-pro.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/js-sdk-pro.min.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/china.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/china.json -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/layui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/layui.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/layui.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/layui.mobile.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/code.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/laydate/default/laydate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/laydate/default/laydate.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/layer/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/layer/default/layer.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/layim/html/chatlog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/layim/html/chatlog.html -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/layim/html/find.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/layim/html/find.html -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/layim/html/getmsg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/layim/html/getmsg.json -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/layim/html/msgbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/layim/html/msgbox.html -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/layim/layim.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/layim/layim.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/layim/mobile/layim.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/layim/mobile/layim.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/layim/skin/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/layim/skin/1.jpg -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/layim/skin/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/layim/skin/2.jpg -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/layim/skin/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/layim/skin/3.jpg -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/layim/skin/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/layim/skin/4.jpg -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/layim/skin/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/layim/skin/5.jpg -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/layim/skin/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/layim/skin/logo.jpg -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/css/modules/layim/voice/default.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/css/modules/layim/voice/default.mp3 -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/font/iconfont.eot -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/font/iconfont.svg -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/font/iconfont.woff -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/0.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/1.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/10.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/11.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/12.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/13.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/14.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/15.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/16.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/17.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/18.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/19.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/2.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/20.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/21.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/22.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/23.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/24.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/25.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/26.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/27.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/28.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/29.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/3.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/30.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/31.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/32.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/33.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/34.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/35.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/36.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/37.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/38.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/39.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/4.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/40.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/41.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/42.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/43.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/44.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/45.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/46.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/47.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/48.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/49.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/5.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/50.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/51.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/52.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/53.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/54.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/55.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/56.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/57.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/58.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/59.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/6.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/60.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/61.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/62.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/63.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/64.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/65.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/66.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/67.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/68.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/69.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/7.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/70.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/71.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/8.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/images/face/9.gif -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/carousel.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/code.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/colorpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/colorpicker.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/element.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/flow.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/form.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/jquery.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/laydate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/laydate.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/layedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/layedit.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/layer.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/layim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/layim.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/laypage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/laypage.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/laytpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/laytpl.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/mobile.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/rate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/rate.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/slider.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/table.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/transfer.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/tree.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/upload.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/lay/modules/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/lay/modules/util.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/layui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/layui.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layui/xm-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layui/xm-select.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/component/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/component/autocomplete.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/component/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/component/common.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/component/formSelects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/component/formSelects.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/component/ueditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/component/ueditor.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/component/ueditorconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/component/ueditorconfig.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/config.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/css/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/css/autocomplete.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/index.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/lib/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/lib/admin.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/lib/extend/echarts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/lib/extend/echarts.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/lib/extend/echartsTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/lib/extend/echartsTheme.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/lib/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/lib/view.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/pindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/pindex.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/style/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/style/admin.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/style/res/bg-none.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/style/res/bg-none.jpg -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/style/res/layui-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/style/res/layui-logo.jpg -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/style/res/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/style/res/logo-black.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/style/res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/style/res/logo.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/style/res/wangguan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/style/res/wangguan.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/style/res/wangguan_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/style/res/wangguan_1.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/config.json -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/anchor/anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/anchor/anchor.html -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/charts/charts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/charts/charts.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/charts/charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/charts/charts.html -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/charts/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/charts/charts.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/emotion/emotion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/emotion/emotion.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/emotion/emotion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/emotion/emotion.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/help/help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/help/help.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/help/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/help/help.html -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/help/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/help/help.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/image/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/image/image.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/image/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/image/image.html -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/image/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/image/image.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/internal.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/link/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/link/link.html -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/map/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/map/map.html -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/map/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/map/show.html -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/scrawl/scrawl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/scrawl/scrawl.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/scrawl/scrawl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/scrawl/scrawl.html -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/scrawl/scrawl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/scrawl/scrawl.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/table/edittable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/table/edittable.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/table/edittable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/table/edittable.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/table/edittd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/table/edittd.html -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/table/edittip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/table/edittip.html -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/template/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/dialogs/template/config.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/lang/en/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/lang/en/en.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/lang/zh-cn/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/lang/zh-cn/zh-cn.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/themes/iframe.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/third-party/xss.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/third-party/xss.min.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/ueditor.parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/ueditor.parse.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/ueditor/ueditor.parse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/ueditor/ueditor.parse.min.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/views/system/theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/views/system/theme.html -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/views/template/tips/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/views/template/tips/404.html -------------------------------------------------------------------------------- /IoTGateway/wwwroot/layuiadmin/views/template/tips/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/layuiadmin/views/template/tips/error.html -------------------------------------------------------------------------------- /IoTGateway/wwwroot/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/logo.png -------------------------------------------------------------------------------- /IoTGateway/wwwroot/mqtt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/mqtt.min.js -------------------------------------------------------------------------------- /IoTGateway/wwwroot/sitecss/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/sitecss/animate.min.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/sitecss/logincss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/sitecss/logincss.css -------------------------------------------------------------------------------- /IoTGateway/wwwroot/sitecss/wtm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/IoTGateway/wwwroot/sitecss/wtm.css -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugins/Drivers/CNC.Fanuc.H/.vs/DriverFanuc/v17/.futdcache.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/CNC.Fanuc.H/.vs/DriverFanuc/v17/.futdcache.v1 -------------------------------------------------------------------------------- /Plugins/Drivers/CNC.Fanuc.H/.vs/DriverFanuc/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/CNC.Fanuc.H/.vs/DriverFanuc/v17/.suo -------------------------------------------------------------------------------- /Plugins/Drivers/CNC.Fanuc.H/CNC.Fanuc.H.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/CNC.Fanuc.H/CNC.Fanuc.H.csproj -------------------------------------------------------------------------------- /Plugins/Drivers/CNC.Fanuc.H/DeviceFanuc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/CNC.Fanuc.H/DeviceFanuc.cs -------------------------------------------------------------------------------- /Plugins/Drivers/CNC.Fanuc/CNC.Fanuc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/CNC.Fanuc/CNC.Fanuc.csproj -------------------------------------------------------------------------------- /Plugins/Drivers/CNC.Fanuc/DeviceFanuc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/CNC.Fanuc/DeviceFanuc.cs -------------------------------------------------------------------------------- /Plugins/Drivers/CNC.Fanuc/FanucFocas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/CNC.Fanuc/FanucFocas.cs -------------------------------------------------------------------------------- /Plugins/Drivers/CNC.Fanuc/fwlib32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/CNC.Fanuc/fwlib32.cs -------------------------------------------------------------------------------- /Plugins/Drivers/CNC.Fanuc/fwlib64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/CNC.Fanuc/fwlib64.cs -------------------------------------------------------------------------------- /Plugins/Drivers/CNC.MTConnect/CNC.MTConnect.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/CNC.MTConnect/CNC.MTConnect.csproj -------------------------------------------------------------------------------- /Plugins/Drivers/CNC.MTConnect/DeviceMTClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/CNC.MTConnect/DeviceMTClient.cs -------------------------------------------------------------------------------- /Plugins/Drivers/Mock.TcpClient/DeviceTcpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/Mock.TcpClient/DeviceTcpClient.cs -------------------------------------------------------------------------------- /Plugins/Drivers/Mock.TcpClient/Mock.TcpClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/Mock.TcpClient/Mock.TcpClient.csproj -------------------------------------------------------------------------------- /Plugins/Drivers/OPC.DaClient/DeviceDaClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/OPC.DaClient/DeviceDaClient.cs -------------------------------------------------------------------------------- /Plugins/Drivers/OPC.DaClient/OPC.DaClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/OPC.DaClient/OPC.DaClient.csproj -------------------------------------------------------------------------------- /Plugins/Drivers/OPC.DaClient/OPCClient/Interop.OPCAutomation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/OPC.DaClient/OPCClient/Interop.OPCAutomation.dll -------------------------------------------------------------------------------- /Plugins/Drivers/OPC.DaClient/OPCClient/OPCChangeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/OPC.DaClient/OPCClient/OPCChangeModel.cs -------------------------------------------------------------------------------- /Plugins/Drivers/OPC.DaClient/OPCClient/OPCClientWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/OPC.DaClient/OPCClient/OPCClientWrapper.cs -------------------------------------------------------------------------------- /Plugins/Drivers/OPC.DaClient/OPCClient/OPCDataChangedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/OPC.DaClient/OPCClient/OPCDataChangedHandler.cs -------------------------------------------------------------------------------- /Plugins/Drivers/OPC.DaClient/OPCClient/TagItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/OPC.DaClient/OPCClient/TagItem.cs -------------------------------------------------------------------------------- /Plugins/Drivers/OPC.DaClient/OPCClient/TagQuality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/OPC.DaClient/OPCClient/TagQuality.cs -------------------------------------------------------------------------------- /Plugins/Drivers/OPC.DaClient/OPCClient/TagTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/OPC.DaClient/OPCClient/TagTreeNode.cs -------------------------------------------------------------------------------- /Plugins/Drivers/OPC.UaClient/DeviceUaClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/OPC.UaClient/DeviceUaClient.cs -------------------------------------------------------------------------------- /Plugins/Drivers/OPC.UaClient/OPC.UaClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/OPC.UaClient/OPC.UaClient.csproj -------------------------------------------------------------------------------- /Plugins/Drivers/OPC.UaClient/OpcUaHelper/FormUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/OPC.UaClient/OpcUaHelper/FormUtils.cs -------------------------------------------------------------------------------- /Plugins/Drivers/OPC.UaClient/OpcUaHelper/OpcUaClientHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/OPC.UaClient/OpcUaHelper/OpcUaClientHelper.cs -------------------------------------------------------------------------------- /Plugins/Drivers/OPC.UaClient/OpcUaHelper/OpcUaStatusEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/OPC.UaClient/OpcUaHelper/OpcUaStatusEventArgs.cs -------------------------------------------------------------------------------- /Plugins/Drivers/Other.Toledo/.vs/DriverWeightTcpClient/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/Drivers/Other.Toledo/.vs/DriverWeightTcpClient/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/Other.Toledo/.vs/DriverWeightTcpClient/v17/.suo -------------------------------------------------------------------------------- /Plugins/Drivers/Other.Toledo/DeviceToledo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/Other.Toledo/DeviceToledo.cs -------------------------------------------------------------------------------- /Plugins/Drivers/Other.Toledo/Other.Toledo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/Other.Toledo/Other.Toledo.csproj -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.AllenBradley/DeviceAllenBradley.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.AllenBradley/DeviceAllenBradley.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.AllenBradley/PLC.AllenBradley.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.AllenBradley/PLC.AllenBradley.csproj -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.MelsecMc/DeviceMelsecMc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.MelsecMc/DeviceMelsecMc.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.MelsecMc/PLC.MelsecMc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.MelsecMc/PLC.MelsecMc.csproj -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/.vs/DriverModbusMaster/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/.vs/DriverModbusMaster/v17/.suo -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/DeviceModBusMaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/DeviceModBusMaster.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/MasterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/MasterType.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/ModbusDataConver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/ModbusDataConver.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/NModbus4/Data/DataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/NModbus4/Data/DataStore.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/NModbus4/Data/ModbusDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/NModbus4/Data/ModbusDataType.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/NModbus4/Device/IModbusMaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/NModbus4/Device/IModbusMaster.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/NModbus4/Device/ModbusDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/NModbus4/Device/ModbusDevice.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/NModbus4/Device/ModbusMaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/NModbus4/Device/ModbusMaster.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/NModbus4/Device/ModbusSlave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/NModbus4/Device/ModbusSlave.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/NModbus4/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/NModbus4/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/NModbus4/IO/EmptyTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/NModbus4/IO/EmptyTransport.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/NModbus4/IO/IStreamResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/NModbus4/IO/IStreamResource.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/NModbus4/IO/ModbusIpTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/NModbus4/IO/ModbusIpTransport.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/NModbus4/IO/ModbusTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/NModbus4/IO/ModbusTransport.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/NModbus4/IO/TcpClientAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/NModbus4/IO/TcpClientAdapter.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/NModbus4/IO/UdpClientAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/NModbus4/IO/UdpClientAdapter.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/NModbus4/Modbus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/NModbus4/Modbus.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/NModbus4/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/NModbus4/Resources.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/NModbus4/SerialPortAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/NModbus4/SerialPortAdapter.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/NModbus4/SlaveException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/NModbus4/SlaveException.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.ModBusMaster/PLC.ModBusMaster.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.ModBusMaster/PLC.ModBusMaster.csproj -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.OmronFins/DeviceOmronFins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.OmronFins/DeviceOmronFins.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.OmronFins/PLC.OmronFins.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.OmronFins/PLC.OmronFins.csproj -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/DeviceSiemensS7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/DeviceSiemensS7.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/PLC.SiemensS7.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/PLC.SiemensS7.csproj -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/COTP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/COTP.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Compat/TcpClientMixins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Compat/TcpClientMixins.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Conversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Conversion.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Enums.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Internal/TaskQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Internal/TaskQueue.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/InvalidDataException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/InvalidDataException.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/PLC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/PLC.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/PLCAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/PLCAddress.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/PLCExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/PLCExceptions.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/PLCHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/PLCHelpers.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/PlcAsynchronous.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/PlcAsynchronous.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/PlcException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/PlcException.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/PlcSynchronous.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/PlcSynchronous.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Properties/S7.Net.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Properties/S7.Net.snk -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Protocol/S7WriteMultiple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Protocol/S7WriteMultiple.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Protocol/Serialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Protocol/Serialization.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Protocol/Tsap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Protocol/Tsap.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Protocol/TsapPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Protocol/TsapPair.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/StreamExtensions.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/TPKT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/TPKT.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Bit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Bit.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Boolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Boolean.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Byte.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/ByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/ByteArray.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Class.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Counter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Counter.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/DInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/DInt.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/DWord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/DWord.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/DataItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/DataItem.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/DateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/DateTime.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/DateTimeLong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/DateTimeLong.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Double.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Double.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Int.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Int.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/LReal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/LReal.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Real.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Real.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/S7String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/S7String.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/S7StringAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/S7StringAttribute.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/S7WString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/S7WString.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Single.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/String.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/StringEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/StringEx.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Struct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Struct.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Timer.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/TypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/TypeHelper.cs -------------------------------------------------------------------------------- /Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Word.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Drivers/PLC.SiemensS7/S7.Net/Types/Word.cs -------------------------------------------------------------------------------- /Plugins/Plugin/ConnnectSettingsMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Plugin/ConnnectSettingsMode.cs -------------------------------------------------------------------------------- /Plugins/Plugin/DeviceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Plugin/DeviceService.cs -------------------------------------------------------------------------------- /Plugins/Plugin/DeviceThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Plugin/DeviceThread.cs -------------------------------------------------------------------------------- /Plugins/Plugin/DriverInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Plugin/DriverInfo.cs -------------------------------------------------------------------------------- /Plugins/Plugin/DriverService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Plugin/DriverService.cs -------------------------------------------------------------------------------- /Plugins/Plugin/Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Plugin/Expression.cs -------------------------------------------------------------------------------- /Plugins/Plugin/IoTBackgroundService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Plugin/IoTBackgroundService.cs -------------------------------------------------------------------------------- /Plugins/Plugin/JsonUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Plugin/JsonUtility.cs -------------------------------------------------------------------------------- /Plugins/Plugin/MessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Plugin/MessageService.cs -------------------------------------------------------------------------------- /Plugins/Plugin/ModbusSlaveService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Plugin/ModbusSlaveService.cs -------------------------------------------------------------------------------- /Plugins/Plugin/PlatformHandler/IPlatformHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Plugin/PlatformHandler/IPlatformHandler.cs -------------------------------------------------------------------------------- /Plugins/Plugin/PlatformHandler/IoTSharpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Plugin/PlatformHandler/IoTSharpHandler.cs -------------------------------------------------------------------------------- /Plugins/Plugin/PlatformHandler/PlatformHandlerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Plugin/PlatformHandler/PlatformHandlerFactory.cs -------------------------------------------------------------------------------- /Plugins/Plugin/PlatformHandler/ThingsBoardHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Plugin/PlatformHandler/ThingsBoardHandler.cs -------------------------------------------------------------------------------- /Plugins/Plugin/PlatformHandler/ThingsCloudHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Plugin/PlatformHandler/ThingsCloudHandler.cs -------------------------------------------------------------------------------- /Plugins/Plugin/PlatformHandler/ThingsPanelHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Plugin/PlatformHandler/ThingsPanelHandler.cs -------------------------------------------------------------------------------- /Plugins/Plugin/Plugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/Plugin/Plugin.csproj -------------------------------------------------------------------------------- /Plugins/PluginInterface/ConfigParameterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/ConfigParameterAttribute.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/DataTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/DataTypeEnum.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/DriverAddressIoArgModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/DriverAddressIoArgModel.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/DriverInfoAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/DriverInfoAttribute.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/DriverReturnValueModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/DriverReturnValueModel.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/DriverSupportedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/DriverSupportedAttribute.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/EndianEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/EndianEnum.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/HuaWeiRoma/HwAddDeviceDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/HuaWeiRoma/HwAddDeviceDto.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/HuaWeiRoma/HwDeleteDeviceDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/HuaWeiRoma/HwDeleteDeviceDto.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/HuaWeiRoma/HwDeviceOnOffLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/HuaWeiRoma/HwDeviceOnOffLine.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/HuaWeiRoma/HwTelemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/HuaWeiRoma/HwTelemetry.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/IDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/IDependency.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/IDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/IDriver.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/IoTSharp/ISAttributeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/IoTSharp/ISAttributeResponse.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/IoTSharp/ISRpcResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/IoTSharp/ISRpcResponse.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/IotDB/IotTsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/IotDB/IotTsData.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/MethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/MethodAttribute.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/PluginInterface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/PluginInterface.csproj -------------------------------------------------------------------------------- /Plugins/PluginInterface/ProtectTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/ProtectTypeEnum.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/RpcRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/RpcRequest.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/RpcResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/RpcResponse.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/SendModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/SendModel.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/ThingsBoard/TBRpcRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/ThingsBoard/TBRpcRequest.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/ThingsBoard/TBRpcResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/ThingsBoard/TBRpcResponse.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/ThingsCloud/TCRpcRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/ThingsCloud/TCRpcRequest.cs -------------------------------------------------------------------------------- /Plugins/PluginInterface/VaribaleStatusTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/Plugins/PluginInterface/VaribaleStatusTypeEnum.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/README.md -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Attributes/MainTenantOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Attributes/MainTenantOnly.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Attributes/NoLogAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Attributes/NoLogAttribute.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/BaseBatchVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/BaseBatchVM.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/BaseCRUDVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/BaseCRUDVM.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/BaseImportVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/BaseImportVM.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/BasePagedListVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/BasePagedListVM.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/BaseSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/BaseSearcher.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/BaseTemplateVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/BaseTemplateVM.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/BaseVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/BaseVM.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ConfigOptions/CS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ConfigOptions/CS.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ConfigOptions/Configs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ConfigOptions/Configs.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ConfigOptions/Cors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ConfigOptions/Cors.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ConfigOptions/DFS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ConfigOptions/DFS.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ConfigOptions/DFSTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ConfigOptions/DFSTracker.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ConfigOptions/Domain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ConfigOptions/Domain.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ConfigOptions/JwtOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ConfigOptions/JwtOptions.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ConfigOptions/KV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ConfigOptions/KV.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ConfigOptions/UIOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ConfigOptions/UIOptions.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/CoreProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/CoreProgram.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/DataContext.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Enums.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Extensions/DCExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Extensions/DCExtension.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Extensions/ListExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Extensions/ListExtension.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Extensions/MenuExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Extensions/MenuExtension.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/GlobalConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/GlobalConstants.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/GlobalData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/GlobalData.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/GlobalServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/GlobalServices.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Grid/GridAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Grid/GridAction.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Grid/GridActionExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Grid/GridActionExtension.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Grid/GridColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Grid/GridColumn.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Grid/GridHeaderExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Grid/GridHeaderExtension.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Grid/IGridColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Grid/IGridColumn.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Helper/EntityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Helper/EntityHelper.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Helper/IServiceExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Helper/IServiceExtension.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Helper/LogDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Helper/LogDebug.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Helper/LogTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Helper/LogTrace.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Helper/PropertyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Helper/PropertyHelper.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/IBasePagedListVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/IBasePagedListVM.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/IBaseVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/IBaseVM.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/IDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/IDataContext.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ISessionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/ISessionService.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/IUIService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/IUIService.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/BodyConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/BodyConverter.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/BoolStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/BoolStringConverter.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/DateRangeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/DateRangeConverter.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/DateTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/DateTimeConverter.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/DynamicDataConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/DynamicDataConverter.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/NullableConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/NullableConverter.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/PocoConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/PocoConverter.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/RawStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/RawStringConverter.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/StringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/StringConverter.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/TypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Json/TypeConverter.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/JsonResultModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/JsonResultModel.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/LoginUserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/LoginUserInfo.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/MSD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/MSD.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/ActionLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/ActionLog.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/BasePoco.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/BasePoco.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/DataPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/DataPrivilege.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/Elsa_Bookmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/Elsa_Bookmark.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/Elsa_Trigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/Elsa_Trigger.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FileAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FileAttachment.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FrameworkGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FrameworkGroup.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FrameworkMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FrameworkMenu.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FrameworkRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FrameworkRole.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FrameworkTenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FrameworkTenant.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FrameworkUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FrameworkUser.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FrameworkUserGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FrameworkUserGroup.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FrameworkUserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FrameworkUserRole.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FrameworkWorkflow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FrameworkWorkflow.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FunctionPrivilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/FunctionPrivilege.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/ISearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/ISearcher.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/ISubFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/ISubFile.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/ITenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/ITenant.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/IWorkflow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/IWorkflow.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/IWtmFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/IWtmFile.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/PersistPoco.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/PersistPoco.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/TopBasePoco.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/TopBasePoco.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/TreePoco.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Models/TreePoco.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/AuthConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/AuthConstants.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/ChartData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/ChartData.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/ClaimComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/ClaimComparer.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/DateRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/DateRange.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/DuplicateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/DuplicateInfo.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/DynamicData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/DynamicData.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/ExcelPropety.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/ExcelPropety.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/ExtraClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/ExtraClass.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/ITokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/ITokenService.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/Json/SimpleLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/Json/SimpleLog.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/Json/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/Json/Token.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/ListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/ListItem.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/NugetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/NugetInfo.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/TypeComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/TypeComparer.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/WTMLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/WTMLogger.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/WebProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Support/WebProxy.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Utils.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/WTMContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/WTMContext.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Core/WorkFlow/ApproveInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/WorkFlow/ApproveInfo.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/BaseApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/BaseApiController.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/BaseController.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Binders/DateRangeBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Binders/DateRangeBinder.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Binders/EnumBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Binders/EnumBinder.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/CodeGenListVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/CodeGenListVM.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/CodeGenVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/CodeGenVM.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Filters/FrameworkFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Filters/FrameworkFilter.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Filters/PrivilegeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Filters/PrivilegeFilter.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Filters/SwaggerFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Filters/SwaggerFilter.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/GeneratorFiles/ApiTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/GeneratorFiles/ApiTest.txt -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/GeneratorFiles/BatchVM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/GeneratorFiles/BatchVM.txt -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/GeneratorFiles/CrudVM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/GeneratorFiles/CrudVM.txt -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/GeneratorFiles/ListVM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/GeneratorFiles/ListVM.txt -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/GeneratorFiles/Spa/React/style.txt: -------------------------------------------------------------------------------- 1 | .app-page-$modelname$ { 2 | } 3 | -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Helper/FResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Helper/FResult.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Helper/FResultExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Helper/FResultExtension.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Helper/FileExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Helper/FileExtension.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Helper/IconFontsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Helper/IconFontsHelper.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Helper/JwtRefreshJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Helper/JwtRefreshJob.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Helper/RequestExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Helper/RequestExtension.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Helper/SessionExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Helper/SessionExtension.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Helper/WtmContextOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Helper/WtmContextOption.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Helper/WtmMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Helper/WtmMiddleware.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/IBaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/IBaseController.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Program.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Views/_CodeGen/Gen.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Views/_CodeGen/Gen.cshtml -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/WalkingTec.Mvvm.Mvc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/WalkingTec.Mvvm.Mvc.csproj -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/_CodeGenController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/_CodeGenController.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/_FrameworkController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/_FrameworkController.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/_SetupController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/_SetupController.cs -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/echarts.common.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/echarts.common.min.js -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/fonts/Candara.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/fonts/Candara.ttf -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/fonts/STCAIYUN.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/fonts/STCAIYUN.ttf -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/fonts/impact.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/fonts/impact.ttf -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/fonts/monbaiti.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/fonts/monbaiti.ttf -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/framework_layui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/framework_layui.js -------------------------------------------------------------------------------- /WalkingTec.Mvvm/WalkingTec.Mvvm.TagHelpers.LayUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/WalkingTec.Mvvm/WalkingTec.Mvvm.TagHelpers.LayUI/Program.cs -------------------------------------------------------------------------------- /images/3d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/3d.gif -------------------------------------------------------------------------------- /images/ali-pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/ali-pay.png -------------------------------------------------------------------------------- /images/change-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/change-upload.png -------------------------------------------------------------------------------- /images/express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/express.png -------------------------------------------------------------------------------- /images/gitee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/gitee.png -------------------------------------------------------------------------------- /images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/github.png -------------------------------------------------------------------------------- /images/gvp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/gvp.png -------------------------------------------------------------------------------- /images/mqtt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/mqtt.png -------------------------------------------------------------------------------- /images/official.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/official.png -------------------------------------------------------------------------------- /images/online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/online.png -------------------------------------------------------------------------------- /images/opcua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/opcua.png -------------------------------------------------------------------------------- /images/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/qq.png -------------------------------------------------------------------------------- /images/rpc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/rpc.gif -------------------------------------------------------------------------------- /images/scada-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/scada-config.png -------------------------------------------------------------------------------- /images/scada.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/scada.gif -------------------------------------------------------------------------------- /images/set-variable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/set-variable.png -------------------------------------------------------------------------------- /images/variables.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/variables.gif -------------------------------------------------------------------------------- /images/wx-pay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/wx-pay.jpg -------------------------------------------------------------------------------- /images/wx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/wx.jpg -------------------------------------------------------------------------------- /images/wxgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/images/wxgroup.png -------------------------------------------------------------------------------- /iotgateway.net_bakup_202406010912327657.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/iotgateway.net_bakup_202406010912327657.xlsx -------------------------------------------------------------------------------- /iotgateway数据库.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/iotgateway数据库.md -------------------------------------------------------------------------------- /webscada-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iioter/iotgateway/HEAD/webscada-project.json --------------------------------------------------------------------------------