├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── a.js ├── ant-react ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .husky │ ├── commit-msg │ └── pre-commit ├── .prettierignore ├── .prettierrc.js ├── README.md ├── config │ ├── config.dev.ts │ ├── config.prod.ts │ ├── config.ts │ ├── defaultSettings.ts │ ├── oneapi.json │ ├── proxy.ts │ └── routes.ts ├── jest.config.ts ├── jsconfig.json ├── nginx.conf ├── package.json ├── pnpm-lock.yaml ├── public │ ├── CNAME │ ├── favicon.ico │ ├── icons │ │ ├── icon-128x128.png │ │ ├── icon-192x192.png │ │ └── icon-512x512.png │ ├── logo.svg │ ├── pro_icon.svg │ └── scripts │ │ └── loading.js ├── src │ ├── access.ts │ ├── app.tsx │ ├── components │ │ ├── Footer │ │ │ └── index.tsx │ │ ├── HeaderDropdown │ │ │ └── index.tsx │ │ ├── RightContent │ │ │ ├── AvatarDropdown.tsx │ │ │ └── index.tsx │ │ └── index.ts │ ├── global.less │ ├── global.tsx │ ├── locales │ │ ├── bn-BD.ts │ │ ├── bn-BD │ │ │ ├── component.ts │ │ │ ├── globalHeader.ts │ │ │ ├── menu.ts │ │ │ ├── pages.ts │ │ │ ├── pwa.ts │ │ │ ├── settingDrawer.ts │ │ │ └── settings.ts │ │ ├── en-US.ts │ │ ├── en-US │ │ │ ├── component.ts │ │ │ ├── globalHeader.ts │ │ │ ├── menu.ts │ │ │ ├── pages.ts │ │ │ ├── pwa.ts │ │ │ ├── settingDrawer.ts │ │ │ └── settings.ts │ │ ├── fa-IR.ts │ │ ├── fa-IR │ │ │ ├── component.ts │ │ │ ├── globalHeader.ts │ │ │ ├── menu.ts │ │ │ ├── pages.ts │ │ │ ├── pwa.ts │ │ │ ├── settingDrawer.ts │ │ │ └── settings.ts │ │ ├── id-ID.ts │ │ ├── id-ID │ │ │ ├── component.ts │ │ │ ├── globalHeader.ts │ │ │ ├── menu.ts │ │ │ ├── pages.ts │ │ │ ├── pwa.ts │ │ │ ├── settingDrawer.ts │ │ │ └── settings.ts │ │ ├── ja-JP.ts │ │ ├── ja-JP │ │ │ ├── component.ts │ │ │ ├── globalHeader.ts │ │ │ ├── menu.ts │ │ │ ├── pages.ts │ │ │ ├── pwa.ts │ │ │ ├── settingDrawer.ts │ │ │ └── settings.ts │ │ ├── pt-BR.ts │ │ ├── pt-BR │ │ │ ├── component.ts │ │ │ ├── globalHeader.ts │ │ │ ├── menu.ts │ │ │ ├── pages.ts │ │ │ ├── pwa.ts │ │ │ ├── settingDrawer.ts │ │ │ └── settings.ts │ │ ├── zh-CN.ts │ │ ├── zh-CN │ │ │ ├── component.ts │ │ │ ├── globalHeader.ts │ │ │ ├── menu.ts │ │ │ ├── pages.ts │ │ │ ├── pwa.ts │ │ │ ├── settingDrawer.ts │ │ │ └── settings.ts │ │ ├── zh-TW.ts │ │ └── zh-TW │ │ │ ├── component.ts │ │ │ ├── globalHeader.ts │ │ │ ├── menu.ts │ │ │ ├── pages.ts │ │ │ ├── pwa.ts │ │ │ ├── settingDrawer.ts │ │ │ └── settings.ts │ ├── manifest.json │ ├── pages │ │ ├── 404.tsx │ │ ├── Admin.tsx │ │ ├── Data │ │ │ ├── Calc │ │ │ │ ├── CalcRuleResult.tsx │ │ │ │ ├── CalcRuleUpdateForm.tsx │ │ │ │ ├── MockRun.tsx │ │ │ │ └── index.tsx │ │ │ ├── CalcParam │ │ │ │ ├── CalcParamUpdateForm.tsx │ │ │ │ └── index.tsx │ │ │ ├── ScriptParam │ │ │ │ ├── ScriptNameShow.tsx │ │ │ │ ├── ScriptParamUpdateForm.tsx │ │ │ │ └── index.tsx │ │ │ ├── ScriptWaring │ │ │ │ ├── DebugScript.tsx │ │ │ │ ├── History.tsx │ │ │ │ ├── ScriptWaringUpdateForm.tsx │ │ │ │ └── index.tsx │ │ │ ├── Signal │ │ │ │ ├── DeviceUidShow.tsx │ │ │ │ ├── History.tsx │ │ │ │ ├── SignalNameShow.tsx │ │ │ │ ├── SignalUpdateForm.tsx │ │ │ │ └── index.tsx │ │ │ ├── SignalVis │ │ │ │ └── index.tsx │ │ │ └── SignalWaring │ │ │ │ ├── History.tsx │ │ │ │ ├── SignalWaringUpdateForm.tsx │ │ │ │ └── index.tsx │ │ ├── Device │ │ │ ├── DeviceGroup │ │ │ │ ├── DeviceGroup.tsx │ │ │ │ ├── DeviceGroupBindForm.tsx │ │ │ │ └── DeviceGroupUpdateForm.tsx │ │ │ └── DeviceInfo │ │ │ │ ├── DeviceInfo.tsx │ │ │ │ └── DeviceInfoUpdateForm.tsx │ │ ├── Lifecycle │ │ │ ├── OperationList │ │ │ │ └── OperationList.tsx │ │ │ ├── ProduceList │ │ │ │ └── ProduceList.tsx │ │ │ ├── ProductList │ │ │ │ ├── ProductList.tsx │ │ │ │ ├── ProductUpdateForm.tsx │ │ │ │ └── TagsRow.tsx │ │ │ ├── ShipmentRecord │ │ │ │ └── ShipmentRecord.tsx │ │ │ └── SimList │ │ │ │ ├── SimList.tsx │ │ │ │ └── SimUpdateForm.tsx │ │ ├── Protocol │ │ │ ├── coap │ │ │ │ ├── clients │ │ │ │ │ ├── CoapHandlerUpdateForm.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── nodes │ │ │ │ │ └── index.tsx │ │ │ ├── http │ │ │ │ ├── clients │ │ │ │ │ ├── HttpHandlerUpdateForm.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── nodes │ │ │ │ │ └── index.tsx │ │ │ ├── mqtt │ │ │ │ ├── clients │ │ │ │ │ ├── MqttUpdateForm.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── nodes │ │ │ │ │ └── index.tsx │ │ │ ├── tcp │ │ │ │ ├── clients │ │ │ │ │ ├── TcpHandlerUpdateForm.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── nodes │ │ │ │ │ └── index.tsx │ │ │ └── ws │ │ │ │ ├── clients │ │ │ │ ├── WsHandlerUpdateForm.tsx │ │ │ │ └── index.tsx │ │ │ │ └── nodes │ │ │ │ └── index.tsx │ │ ├── TableList │ │ │ ├── components │ │ │ │ └── UpdateForm.tsx │ │ │ └── index.tsx │ │ ├── User │ │ │ ├── DeptList │ │ │ │ ├── DeptList.tsx │ │ │ │ └── DeptUpdateForm.tsx │ │ │ ├── Login │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── login.test.tsx.snap │ │ │ │ ├── index.tsx │ │ │ │ └── login.test.tsx │ │ │ ├── MessageList │ │ │ │ └── MessageList.tsx │ │ │ ├── RoleList │ │ │ │ ├── RoleList.tsx │ │ │ │ └── RoleUpdateForm.tsx │ │ │ └── UserList │ │ │ │ ├── UserList.tsx │ │ │ │ └── UserUpdateForm.tsx │ │ ├── Welcome.tsx │ │ ├── dashboard │ │ │ ├── AlarmStatistics.tsx │ │ │ ├── DeviceMap.tsx │ │ │ ├── DeviceStatsChart.tsx │ │ │ ├── MessageList.tsx │ │ │ ├── ProductDeviceCards.tsx │ │ │ ├── ProtocolStatsTable.tsx │ │ │ └── index.tsx │ │ ├── forward │ │ │ ├── cassandra │ │ │ │ ├── CassandraTransmitUpdateForm.tsx │ │ │ │ └── index.tsx │ │ │ ├── cassandra_bind │ │ │ │ ├── CassandraTransmitBindUpdateForm.tsx │ │ │ │ └── index.tsx │ │ │ ├── clickhouse │ │ │ │ ├── ClickhouseTransmitUpdateForm.tsx │ │ │ │ └── index.tsx │ │ │ ├── clickhouse_bind │ │ │ │ ├── ClickhouseTransmitBindUpdateForm.tsx │ │ │ │ └── index.tsx │ │ │ ├── influxdb2 │ │ │ │ ├── InfluxdbTransmitUpdateForm.tsx │ │ │ │ └── index.tsx │ │ │ ├── influxdb2_bind │ │ │ │ ├── InfluxdbTransmitBindUpdateForm.tsx │ │ │ │ └── index.tsx │ │ │ ├── mongo │ │ │ │ ├── MongoTransmitUpdateForm.tsx │ │ │ │ └── index.tsx │ │ │ ├── mongo_bind │ │ │ │ ├── MongoTransmitBindUpdateForm.tsx │ │ │ │ └── index.tsx │ │ │ ├── mysql │ │ │ │ ├── MySQLTransmitUpdateForm.tsx │ │ │ │ └── index.tsx │ │ │ └── mysql_bind │ │ │ │ ├── MysqlTransmitBindUpdateForm.tsx │ │ │ │ └── index.tsx │ │ ├── mirror │ │ │ ├── admin │ │ │ │ └── index.tsx │ │ │ └── protocol │ │ │ │ ├── MetricsModal.tsx │ │ │ │ ├── coap.tsx │ │ │ │ ├── http.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── mqtt.tsx │ │ │ │ ├── tcp.tsx │ │ │ │ └── ws.tsx │ │ └── notice │ │ │ ├── dingding │ │ │ ├── DingDingUpdateForm.tsx │ │ │ └── index.tsx │ │ │ └── feishu │ │ │ ├── FeishuUpdateForm.tsx │ │ │ └── index.tsx │ ├── requestErrorConfig.ts │ ├── service-worker.js │ ├── services │ │ ├── ant-design-pro │ │ │ ├── api.ts │ │ │ ├── common.ts │ │ │ ├── index.ts │ │ │ ├── login.ts │ │ │ └── typings.d.ts │ │ └── swagger │ │ │ ├── index.ts │ │ │ ├── pet.ts │ │ │ ├── store.ts │ │ │ ├── typings.d.ts │ │ │ └── user.ts │ └── typings.d.ts ├── tests │ └── setupTests.jsx ├── tsconfig.json └── types │ ├── cache │ ├── cache.json │ ├── login.cache.json │ └── mock │ │ ├── login.mock.cache.js │ │ └── mock.cache.js │ └── index.d.ts ├── ant-vue ├── .commitlintrc ├── .env.development ├── .env.docker ├── .env.production ├── .eslintrc.cjs ├── .gitignore ├── .prettierrc ├── .vscode │ ├── extensions.json │ └── settings.json ├── README.md ├── env.d.ts ├── index.html ├── nginx.conf ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── public │ └── vite.svg ├── src │ ├── App.vue │ ├── api │ │ └── index.ts │ ├── components │ │ ├── Tag │ │ │ └── index.vue │ │ ├── echarts │ │ │ ├── index.d.ts │ │ │ ├── index.vue │ │ │ └── walden.project.json │ │ ├── index.ts │ │ ├── select │ │ │ ├── CalculateSelect.vue │ │ │ ├── DeptSelect.vue │ │ │ ├── MqttModSelect.vue │ │ │ ├── MqttSelect.vue │ │ │ ├── Product.vue │ │ │ ├── SignalDelayWaring.vue │ │ │ ├── SignalModeSelect.vue │ │ │ └── SignalSelect.vue │ │ └── upload │ │ │ └── index.vue │ ├── constants │ │ └── index.ts │ ├── directives │ │ ├── copy.ts │ │ ├── index.ts │ │ ├── permission.ts │ │ └── resize.ts │ ├── hooks │ │ ├── useAddPage.ts │ │ ├── useColumns.ts │ │ ├── useDeletePage.ts │ │ ├── useECharts.ts │ │ ├── useEditableData.ts │ │ ├── usePagination.ts │ │ ├── useQueryPage.ts │ │ ├── useRoles.ts │ │ ├── useRouteJump.ts │ │ ├── useTheme.ts │ │ └── useUpdatePage.ts │ ├── i18n │ │ ├── en.ts │ │ ├── index.ts │ │ └── zh-CHS.ts │ ├── icons │ │ ├── complex.config.cjs │ │ ├── complex │ │ │ └── empty.svg │ │ ├── simple.config.cjs │ │ └── simple │ │ │ └── loading.svg │ ├── layout │ │ └── index.vue │ ├── main.ts │ ├── permission.ts │ ├── plugins │ │ └── vxe-table.ts │ ├── request │ │ ├── cancel.ts │ │ ├── empty.ts │ │ ├── error.ts │ │ └── index.ts │ ├── router │ │ ├── index.ts │ │ └── single.ts │ ├── stores │ │ ├── index.ts │ │ ├── permission.ts │ │ ├── routerPath.ts │ │ └── theme.ts │ ├── styles │ │ ├── index.less │ │ ├── library.less │ │ ├── scrollbar.less │ │ └── variable.less │ ├── theme │ │ ├── dark.ts │ │ └── light.ts │ ├── types │ │ └── form.ts │ ├── utils │ │ ├── color.ts │ │ ├── date.ts │ │ ├── el.ts │ │ ├── i18n.ts │ │ ├── permission.ts │ │ └── setAxiosConfig.ts │ └── views │ │ ├── calculate-parameters │ │ └── index.vue │ │ ├── calculation-rules │ │ └── index.vue │ │ ├── calculation-view │ │ ├── add.vue │ │ └── index.vue │ │ ├── cassandra │ │ └── index.vue │ │ ├── clickhouse │ │ └── index.vue │ │ ├── coap │ │ └── index.vue │ │ ├── comp-preview │ │ └── index.vue │ │ ├── dept │ │ └── index.vue │ │ ├── deviceGroup │ │ ├── index.vue │ │ └── modal │ │ │ └── bindDevice.vue │ │ ├── deviceInfos │ │ └── index.vue │ │ ├── dingdingRobot │ │ └── index.vue │ │ ├── draggable │ │ ├── add.vue │ │ └── index.vue │ │ ├── feishuRobot │ │ └── index.vue │ │ ├── http │ │ └── index.vue │ │ ├── icon-preview │ │ └── index.vue │ │ ├── influxdb2 │ │ └── index.vue │ │ ├── message-list │ │ └── index.vue │ │ ├── mongo │ │ └── index.vue │ │ ├── mqtt-management │ │ └── index.vue │ │ ├── mysql │ │ └── index.vue │ │ ├── node-details │ │ └── index.vue │ │ ├── product │ │ └── index.vue │ │ ├── production-plans │ │ └── index.vue │ │ ├── repair-records │ │ └── index.vue │ │ ├── role │ │ └── index.vue │ │ ├── script-alarm-parameters │ │ └── index.vue │ │ ├── script-alarm │ │ └── index.vue │ │ ├── shipment-records │ │ └── index.vue │ │ ├── signal-configuration │ │ └── index.vue │ │ ├── signal │ │ └── index.vue │ │ ├── sim-card │ │ └── index.vue │ │ ├── tcp │ │ └── index.vue │ │ ├── user │ │ └── index.vue │ │ ├── visualization │ │ ├── add.vue │ │ ├── index.vue │ │ └── list.vue │ │ └── websocket │ │ └── index.vue ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── deploy ├── IotAdminReact.Dockerfile ├── IotAdminVue.Dockerfile ├── IotGoMQ.Dockerfile ├── IotGoProject.Dockerfile ├── IotMQTT.Dockerfile ├── mqtt客户端管理项目部署.md ├── rabbit消费者部署.md ├── readme.md ├── 后台服务部署.md └── 环境部署.md ├── doc ├── Go IoT 开发平台对数据上报的思考.md ├── GoIoT开发平台介绍.pdf ├── GoIoT开发平台分析.pdf ├── MQTT客户端管理方案.md ├── MQTT客户端管理方案 │ ├── MQTT客户端保活.drawio.png │ ├── MQTT客户端管理方案.drawio.png │ └── image-20240423094241762.png ├── readme.md ├── 功能说明 │ ├── 人员管理.md │ ├── 协议管理.md │ ├── 数据管理.md │ ├── 生命周期.md │ └── 通知管理.md ├── 报警.md ├── 报警 │ ├── 数值报警.drawio.png │ └── 脚本报警.drawio.png ├── 数据流转链路.md ├── 数据流转链路 │ └── 设备数据流转链路.drawio.png ├── 测试方案.md ├── 设备模拟.md ├── 部署.md └── 部署 │ ├── image-20240902123240839.png │ ├── image-20240902123753596.png │ └── image-20240902123825724.png ├── docker ├── afa │ ├── config │ │ ├── mosquitto.conf │ │ └── pwfile │ └── docker-compose.yml ├── app-start.sh ├── app │ ├── docker-compose.react.yml │ ├── docker-compose.yml │ ├── iot-project │ │ └── config │ │ │ └── app-local.yml │ ├── mq │ │ └── config │ │ │ ├── app-local-calc.yml │ │ │ ├── app-local-pre_handler-1.yml │ │ │ ├── app-local-pre_handler-2.yml │ │ │ ├── app-local-pre_handler-3.yml │ │ │ ├── app-local-pre_handler.yml │ │ │ ├── app-local-waring_handler.yml │ │ │ └── app-local-wd.yml │ └── mqtt │ │ └── config │ │ ├── app-local.yml │ │ ├── app-local2.yml │ │ └── app-local3.yml ├── env-start.sh ├── env │ ├── Cassandra │ │ └── docker-compose.yml │ ├── Pulsar │ │ └── docker-compose.yml │ ├── base-env-docker-compose.yml │ ├── big-data-env-docker-compose.yml │ ├── clickhouse │ │ ├── config │ │ │ ├── config.xml │ │ │ ├── docker_related_config.xml │ │ │ └── users.xml │ │ └── docker-compose.yml │ ├── influx │ │ ├── docker-compose.yml │ │ ├── influxv2.env │ │ └── telegraf │ │ │ └── mytelegraf.conf │ ├── iotdb │ │ └── docker-compose.yml │ ├── kafka │ │ └── docker-compose.yml │ ├── mongo │ │ ├── docker-compose.yml │ │ └── init-mongo.js │ ├── mqtt │ │ ├── docker-compose.yml │ │ ├── mock │ │ │ ├── Dockerfile │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── main.go │ │ │ ├── mqtt.yml │ │ │ └── start.sh │ │ └── readme.md │ ├── mysql │ │ └── docker-compose.yml │ ├── rabbitmq │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ ├── enabled_plugins │ │ └── plugins │ │ │ └── rabbitmq_delayed_message_exchange-3.10.2.ez │ ├── redis │ │ ├── conf │ │ │ └── redis.conf │ │ └── docker-compose.yml │ └── rocketmq │ │ └── docker-compose.yml ├── metricsMonitor │ ├── grafana │ │ └── config │ │ │ ├── datasources.json │ │ │ └── grafana.ini │ ├── metrics-monitor-docker-compose.yml │ └── prometheus │ │ └── prometheus.yml └── rabbitmq │ └── data │ └── .erlang.cookie ├── go-iot-mq ├── MongoUt.go ├── app-local-calc.yml ├── app-local-pre_coap_handler.yml ├── app-local-pre_handler.yml ├── app-local-pre_http_handler.yml ├── app-local-pre_tcp_handler.yml ├── app-local-pre_ws_handler.yml ├── app-local-transmit.yml ├── app-local-waring_handler.yml ├── app-local-wd.yml ├── app-local.yml ├── customer.go ├── go.mod ├── go.sum ├── handler_calc.go ├── handler_coap_storage.go ├── handler_http_storage.go ├── handler_mqtt_storage.go ├── handler_notice.go ├── handler_tcp_storage.go ├── handler_transmit.go ├── handler_waring.go ├── handler_waring_delay.go ├── handler_ws_storage.go ├── log.go ├── main.go ├── mq.go ├── push_time_check.go ├── redis.go ├── start-calc.sh ├── start-pre.sh ├── start-waring.sh ├── start-wd.sh ├── structs.go └── z_test.go ├── go-iot ├── .gitignore ├── app-local.yml ├── app-local2.yml ├── beat.go ├── build.sh ├── c.svg ├── ctr.go ├── go.mod ├── go.sum ├── log.go ├── main.go ├── mq_test.go ├── mqtt.go ├── mqtt_redis.go ├── mqtt_service.go ├── rabbit_mq.go ├── readme.md ├── redis.go ├── redis_lock.go ├── service_instance.go └── start.sh ├── iot-go-project ├── app-local.yml ├── biz │ ├── calc_param_biz.go │ ├── calc_rule_biz.go │ ├── calc_run_biz.go │ ├── coap_biz.go │ ├── cron_test.go │ ├── dashboard_biz.go │ ├── dept_biz.go │ ├── device_group_biz.go │ ├── device_info_biz.go │ ├── device_install_record_biz.go │ ├── http_biz.go │ ├── influxdb_biz.go │ ├── message_list_biz.go │ ├── mqtt_client_biz.go │ ├── node_biz.go │ ├── notice │ │ ├── dingding_biz.go │ │ └── feishu_biz.go │ ├── product_biz.go │ ├── production_plan_biz.go │ ├── redis_expire_biz.go │ ├── repair_record_biz.go │ ├── role_biz.go │ ├── script_biz.go │ ├── script_list_biz.go │ ├── script_test.go │ ├── shipment_record_biz.go │ ├── signal_biz.go │ ├── signal_delay_waring_biz.go │ ├── signal_delay_waring_param_biz.go │ ├── sim_card_biz.go │ ├── tcp_biz.go │ ├── transmit │ │ ├── cassandra_transmit_biz.go │ │ ├── clickhouse_transmit_biz.go │ │ ├── influxdb_transmit_biz.go │ │ ├── kafka_transmit_biz.go │ │ ├── mongo_transmit_biz.go │ │ ├── mqtt │ │ │ ├── cassandra_bind_mqtt_biz.go │ │ │ ├── clickhouse_bind_mqtt_biz.go │ │ │ ├── influxdb_bind_mqtt_biz.go │ │ │ ├── kafka_bind_mqtt_biz.go │ │ │ ├── mongo_bind_mqtt_biz.go │ │ │ ├── mysql_bind_mqtt_biz.go │ │ │ └── rabbit_bind_mqtt_biz.go │ │ ├── mysql_transmit_biz.go │ │ └── rabbit_transmit_biz.go │ ├── user_biz.go │ └── ws_biz.go ├── config │ └── config.go ├── glob │ └── glob.go ├── go.mod ├── go.sum ├── initialize │ ├── init.go │ └── redis_lock.go ├── main.go ├── models │ ├── action.go │ ├── models.go │ ├── notice.go │ ├── transmit.go │ └── valicate.go ├── readme.md ├── router │ ├── calc_param_router.go │ ├── calc_rule_router.go │ ├── coap_handler_router.go │ ├── dashboard_router.go │ ├── data_router.go │ ├── dept_router.go │ ├── device_group_router.go │ ├── device_info_router.go │ ├── device_install_record_router.go │ ├── file_router.go │ ├── http_handler_router.go │ ├── login_router.go │ ├── message_list_router.go │ ├── mqtt_client_router.go │ ├── notice │ │ ├── dingding_router.go │ │ └── feishu_router.go │ ├── pod_router.go │ ├── product_router.go │ ├── production_plan_router.go │ ├── promethues.go │ ├── protocol_router.go │ ├── repair_record_router.go │ ├── role_router.go │ ├── script_list_router.go │ ├── shipment_record_router.go │ ├── signal_delay_waring_param_router.go │ ├── signal_delay_waring_router.go │ ├── signal_router.go │ ├── signal_waring_config_router.go │ ├── sim_card_router.go │ ├── statistics │ │ └── statistics_router.go │ ├── tcp_handler_router.go │ ├── transmit │ │ ├── cassandra_transmit_router.go │ │ ├── clickhouse_transmit_router.go │ │ ├── influxdb_transmit_router.go │ │ ├── kafka_transmit_router.go │ │ ├── mongo_transmit_router.go │ │ ├── mysql_transmit_router.go │ │ ├── rabbit_transmit_router.go │ │ └── transmit_mqtt │ │ │ ├── cassandra_bind_mqtt_router.go │ │ │ ├── clickhouse_bind_mqtt_router.go │ │ │ ├── influxdb_bind_mqtt_router.go │ │ │ ├── kafka_bind_mqtt_router.go │ │ │ ├── mongo_bind_mqtt_router.go │ │ │ ├── mysql_bind_mqtt_router.go │ │ │ └── rabbit_bind_mqtt_router.go │ ├── user_router.go │ └── ws_handler_router.go ├── servlet │ └── servlet.go ├── start.sh ├── task │ └── task.go └── ut │ ├── InfluxUt.go │ ├── MongoUt.go │ └── times.go ├── notice ├── go.mod ├── go.sum ├── models │ └── models.go ├── readme.md ├── sender │ ├── ding_sender.go │ └── sender.go └── test │ └── ding_test.go ├── operation ├── image.png ├── 操作文档.md └── 操作文档 │ ├── image-20240606094255537.png │ ├── image-20240606094311563.png │ ├── image-20240606094417071.png │ ├── image-20240606094431736.png │ ├── image-20240606095128822.png │ ├── image-20240606095204696.png │ ├── image-20240606095303850.png │ ├── image-20240606095609024.png │ ├── image-20240606101016121.png │ ├── image-20240606101935355.png │ ├── image-20240606102215355.png │ ├── image-20240606102407166.png │ ├── image-20240606102427935.png │ ├── image-20240606102919129.png │ ├── image-20240606102937751.png │ ├── image-20240606103447234.png │ ├── image-20240606103550811.png │ ├── image-20240606103946874.png │ ├── image-20240606103953112.png │ ├── image-20240606104453746.png │ ├── image-20240606104745498.png │ ├── image-20240606105047390.png │ ├── image-20240606105138761.png │ ├── image-20240606105443413.png │ ├── image-20240606105502418.png │ ├── image-20240606105928178.png │ ├── image-20240606105954148.png │ ├── image-20240606110124477.png │ ├── image-20240606110140876.png │ ├── image-20240606110528155.png │ ├── image-20240606110554774.png │ ├── image-20240606110630063.png │ ├── image-20240606110653819.png │ ├── image-20240606111305558.png │ ├── image-20240606111429126.png │ ├── image-20240606111609969.png │ ├── image-20240606111858944.png │ ├── image-20240606111939061.png │ ├── image-20240606112501476.png │ ├── image-20240606112518583.png │ ├── image-20240606112841272.png │ ├── image-20240606112945960.png │ ├── image-20240606112959902.png │ ├── image-20240606123826130.png │ ├── image-20240606123927495.png │ ├── image-20240606124428648.png │ ├── image-20240606124444863.png │ ├── image-20240606124936036.png │ ├── image-20240606125101076.png │ ├── image-20240606125408906.png │ ├── image-20240606125650440.png │ ├── image-20240606125710860.png │ ├── image-20240606125743694.png │ ├── image-20240606125841654.png │ ├── image-20240606130011982.png │ ├── image-20240606130045585.png │ ├── image-20240606130457564.png │ ├── image-20240606130509502.png │ ├── image-20240606130856586.png │ ├── image-20240606130923434.png │ ├── image-20240606130959242.png │ ├── image-20240606135730782.png │ ├── image-20240606135808693.png │ ├── image-20240606135902648.png │ ├── image-20240606140147152.png │ ├── image-20240606142743931.png │ ├── image-20240606142934074.png │ ├── image-20240606143003737.png │ ├── image-20240606143149691.png │ ├── image-20240606143413851.png │ ├── image-20240606143635353.png │ ├── image-20240606144929189.png │ ├── image-20240606145602958.png │ ├── image-20240606145659098.png │ ├── image-20240606145847500.png │ ├── image-20240606145948476.png │ ├── image-20240606150004980.png │ ├── image-20240606150154486.png │ ├── image-20240606150726511.png │ ├── image-20240606150805927.png │ ├── image-20240606150858294.png │ ├── image-20240606151858847.png │ ├── image-20240606151915415.png │ ├── image-20240606152036372.png │ ├── image-20240606152220117.png │ ├── image-20240606152257812.png │ ├── image-20240606152646143.png │ ├── image-20240606152945561.png │ ├── image-20240606153511205.png │ ├── image-20240606153911041.png │ ├── image-20240606153937040.png │ ├── image-20240606154524267.png │ ├── image-20240606154921513.png │ ├── image-20240606155158429.png │ ├── image-20240606155217737.png │ ├── image-20240606155540984.png │ ├── image-20240606155657395.png │ ├── image-20240606155727562.png │ ├── image-20240606155844230.png │ ├── image-20240606160355023.png │ ├── image-20240606160413988.png │ ├── image-20240606160958746.png │ ├── image-20240606161321205.png │ ├── image-20240606161425423.png │ ├── image-20240606161520450.png │ ├── image-20240606161535507.png │ ├── image-20240606161646066.png │ ├── image-20240606161712411.png │ ├── image-20240606161744750.png │ ├── image-20240606161904468.png │ ├── image-20240606162113076.png │ ├── image-20240606162136009.png │ ├── image-20240606162252098.png │ ├── image-20240606162307908.png │ ├── image-20240606162721881.png │ ├── image-20240606162939311.png │ ├── image-20240606163142021.png │ ├── image-20240606163211691.png │ ├── image-20240606163315820.png │ ├── image-20240606163335959.png │ ├── image-20240606163441432.png │ ├── image-20240606163457246.png │ ├── image-20240606163553406.png │ ├── image-20240606163900046.png │ ├── image-20240606163916249.png │ ├── image-20240606164219841.png │ ├── image-20240606164308715.png │ ├── image-20240606164324452.png │ ├── image-20240606164753125.png │ ├── image-20240606164806521.png │ ├── image-20240606164936877.png │ ├── image-20240606165008936.png │ ├── image-20240606165106823.png │ ├── image-20240606165223720.png │ ├── image-20240606165725939.png │ ├── image-20240606165740680.png │ ├── image-20240606165858358.png │ ├── image-20240606170209153.png │ ├── image-20240606170230662.png │ ├── image-20240606170243011.png │ ├── image-20240606170327143.png │ ├── image-20240606170412260.png │ ├── image-20240606170511155.png │ ├── image-20240606170549901.png │ ├── image-20240606170711994.png │ ├── image-20240606170832389.png │ ├── image-20240606170845707.png │ ├── image-20240606171045130.png │ ├── image-20240606171235567.png │ └── image-20240607163432931.png ├── protocol ├── coap │ ├── app-local.yml │ ├── beat.go │ ├── data_handler_st.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── rabbit_mq.go │ ├── redis.go │ ├── redis_lock.go │ ├── sample │ │ ├── client │ │ │ └── main.go │ │ └── server │ │ │ └── main.go │ ├── server.go │ └── task.go ├── http │ ├── app-local.yml │ ├── beat.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── rabbit_mq.go │ └── redis.go ├── modbus │ ├── app-local.yml │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── rabbit_mq.go │ ├── redis.go │ ├── redis_lock.go │ └── sample │ │ ├── client │ │ └── client.go │ │ └── server │ │ └── server.go ├── readme.md ├── readme │ └── image-20240725103427236.png ├── tcp │ ├── app-local.yml │ ├── beat.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── rabbit_mq.go │ ├── redis.go │ ├── redis_lock.go │ ├── server.go │ ├── server_test.go │ └── task.go └── ws │ ├── app-local.yml │ ├── beat.go │ ├── ctr.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── rabbit_mq.go │ ├── redis.go │ ├── redis_lock.go │ ├── task.go │ ├── template │ └── index.html │ └── ws.go ├── readme.md ├── readme ├── image-20240524123513247.png ├── image-20240524123533112.png ├── image-20240524123606435.png ├── image-20240524123618542.png ├── image-20240524123658849.png ├── image-20240524123718443.png ├── image-20240524123729546.png ├── image-20240524123805587.png ├── image-20240524123820684.png ├── o1.png ├── 数据图.jpg ├── 架构图.png └── 网络-数据结构图.png ├── readme_CN.md ├── roadmap.md ├── swagger.sh ├── test ├── 1.txt ├── 2.txt ├── Dockerfile ├── MQTT-TEST.log ├── b.go ├── check.py ├── docker-compose.yml ├── go.mod ├── go.sum ├── init_redis.sh ├── log.go ├── main.go ├── mock_coap │ ├── Dockerfile │ ├── docker-compose.yml │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── start_mock_coap.sh ├── mock_http │ ├── Dockerfile │ ├── docker-compose.yml │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── start_mock_http.sh ├── mock_mqtt │ ├── 1.txt │ ├── Dockerfile │ ├── docker-compose.yml │ ├── go.mod │ ├── go.sum │ ├── log.go │ ├── main.go │ ├── start_mock_mqtt.sh │ └── v.go ├── mock_tcp │ ├── Dockerfile │ ├── docker-compose.yml │ ├── go.mod │ ├── main.go │ └── start_mock_tcp.sh ├── mock_ws │ ├── Dockerfile │ ├── docker-compose.yml │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── start_mock_ws.sh ├── mqtt_serv.go └── v.go ├── todo.md ├── transmit ├── cache │ ├── transmit_cache.go │ ├── transmit_cache_biz.go │ └── transmit_cache_test.go ├── cassandra │ ├── cassandra_op.go │ └── cassandra_op_test.go ├── clickhouse │ ├── clickhouse_op.go │ └── clickhouse_op_test.go ├── common │ └── common_interface.go ├── go.mod ├── go.sum ├── influxdb2 │ ├── influxdb_op.go │ └── influxdb_op_test.go ├── mongo │ ├── mongo_op.go │ └── mongo_op_test.go ├── mysql │ ├── mysql_op.go │ └── mysql_op_test.go └── readme.md └── work.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/LICENSE -------------------------------------------------------------------------------- /a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/a.js -------------------------------------------------------------------------------- /ant-react/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/.editorconfig -------------------------------------------------------------------------------- /ant-react/.eslintignore: -------------------------------------------------------------------------------- 1 | /lambda/ 2 | /scripts 3 | /config 4 | .history 5 | public 6 | dist 7 | .umi 8 | mock -------------------------------------------------------------------------------- /ant-react/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/.eslintrc.js -------------------------------------------------------------------------------- /ant-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/.gitignore -------------------------------------------------------------------------------- /ant-react/.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/.husky/commit-msg -------------------------------------------------------------------------------- /ant-react/.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/.husky/pre-commit -------------------------------------------------------------------------------- /ant-react/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/.prettierignore -------------------------------------------------------------------------------- /ant-react/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/.prettierrc.js -------------------------------------------------------------------------------- /ant-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/README.md -------------------------------------------------------------------------------- /ant-react/config/config.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/config/config.dev.ts -------------------------------------------------------------------------------- /ant-react/config/config.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/config/config.prod.ts -------------------------------------------------------------------------------- /ant-react/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/config/config.ts -------------------------------------------------------------------------------- /ant-react/config/defaultSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/config/defaultSettings.ts -------------------------------------------------------------------------------- /ant-react/config/oneapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/config/oneapi.json -------------------------------------------------------------------------------- /ant-react/config/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/config/proxy.ts -------------------------------------------------------------------------------- /ant-react/config/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/config/routes.ts -------------------------------------------------------------------------------- /ant-react/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/jest.config.ts -------------------------------------------------------------------------------- /ant-react/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/jsconfig.json -------------------------------------------------------------------------------- /ant-react/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/nginx.conf -------------------------------------------------------------------------------- /ant-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/package.json -------------------------------------------------------------------------------- /ant-react/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/pnpm-lock.yaml -------------------------------------------------------------------------------- /ant-react/public/CNAME: -------------------------------------------------------------------------------- 1 | preview.pro.ant.design -------------------------------------------------------------------------------- /ant-react/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/public/favicon.ico -------------------------------------------------------------------------------- /ant-react/public/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/public/icons/icon-128x128.png -------------------------------------------------------------------------------- /ant-react/public/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/public/icons/icon-192x192.png -------------------------------------------------------------------------------- /ant-react/public/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/public/icons/icon-512x512.png -------------------------------------------------------------------------------- /ant-react/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/public/logo.svg -------------------------------------------------------------------------------- /ant-react/public/pro_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/public/pro_icon.svg -------------------------------------------------------------------------------- /ant-react/public/scripts/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/public/scripts/loading.js -------------------------------------------------------------------------------- /ant-react/src/access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/access.ts -------------------------------------------------------------------------------- /ant-react/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/app.tsx -------------------------------------------------------------------------------- /ant-react/src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /ant-react/src/components/HeaderDropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/components/HeaderDropdown/index.tsx -------------------------------------------------------------------------------- /ant-react/src/components/RightContent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/components/RightContent/index.tsx -------------------------------------------------------------------------------- /ant-react/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/components/index.ts -------------------------------------------------------------------------------- /ant-react/src/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/global.less -------------------------------------------------------------------------------- /ant-react/src/global.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/global.tsx -------------------------------------------------------------------------------- /ant-react/src/locales/bn-BD.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/bn-BD.ts -------------------------------------------------------------------------------- /ant-react/src/locales/bn-BD/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/bn-BD/component.ts -------------------------------------------------------------------------------- /ant-react/src/locales/bn-BD/globalHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/bn-BD/globalHeader.ts -------------------------------------------------------------------------------- /ant-react/src/locales/bn-BD/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/bn-BD/menu.ts -------------------------------------------------------------------------------- /ant-react/src/locales/bn-BD/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/bn-BD/pages.ts -------------------------------------------------------------------------------- /ant-react/src/locales/bn-BD/pwa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/bn-BD/pwa.ts -------------------------------------------------------------------------------- /ant-react/src/locales/bn-BD/settingDrawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/bn-BD/settingDrawer.ts -------------------------------------------------------------------------------- /ant-react/src/locales/bn-BD/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/bn-BD/settings.ts -------------------------------------------------------------------------------- /ant-react/src/locales/en-US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/en-US.ts -------------------------------------------------------------------------------- /ant-react/src/locales/en-US/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/en-US/component.ts -------------------------------------------------------------------------------- /ant-react/src/locales/en-US/globalHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/en-US/globalHeader.ts -------------------------------------------------------------------------------- /ant-react/src/locales/en-US/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/en-US/menu.ts -------------------------------------------------------------------------------- /ant-react/src/locales/en-US/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/en-US/pages.ts -------------------------------------------------------------------------------- /ant-react/src/locales/en-US/pwa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/en-US/pwa.ts -------------------------------------------------------------------------------- /ant-react/src/locales/en-US/settingDrawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/en-US/settingDrawer.ts -------------------------------------------------------------------------------- /ant-react/src/locales/en-US/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/en-US/settings.ts -------------------------------------------------------------------------------- /ant-react/src/locales/fa-IR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/fa-IR.ts -------------------------------------------------------------------------------- /ant-react/src/locales/fa-IR/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/fa-IR/component.ts -------------------------------------------------------------------------------- /ant-react/src/locales/fa-IR/globalHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/fa-IR/globalHeader.ts -------------------------------------------------------------------------------- /ant-react/src/locales/fa-IR/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/fa-IR/menu.ts -------------------------------------------------------------------------------- /ant-react/src/locales/fa-IR/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/fa-IR/pages.ts -------------------------------------------------------------------------------- /ant-react/src/locales/fa-IR/pwa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/fa-IR/pwa.ts -------------------------------------------------------------------------------- /ant-react/src/locales/fa-IR/settingDrawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/fa-IR/settingDrawer.ts -------------------------------------------------------------------------------- /ant-react/src/locales/fa-IR/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/fa-IR/settings.ts -------------------------------------------------------------------------------- /ant-react/src/locales/id-ID.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/id-ID.ts -------------------------------------------------------------------------------- /ant-react/src/locales/id-ID/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/id-ID/component.ts -------------------------------------------------------------------------------- /ant-react/src/locales/id-ID/globalHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/id-ID/globalHeader.ts -------------------------------------------------------------------------------- /ant-react/src/locales/id-ID/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/id-ID/menu.ts -------------------------------------------------------------------------------- /ant-react/src/locales/id-ID/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/id-ID/pages.ts -------------------------------------------------------------------------------- /ant-react/src/locales/id-ID/pwa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/id-ID/pwa.ts -------------------------------------------------------------------------------- /ant-react/src/locales/id-ID/settingDrawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/id-ID/settingDrawer.ts -------------------------------------------------------------------------------- /ant-react/src/locales/id-ID/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/id-ID/settings.ts -------------------------------------------------------------------------------- /ant-react/src/locales/ja-JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/ja-JP.ts -------------------------------------------------------------------------------- /ant-react/src/locales/ja-JP/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/ja-JP/component.ts -------------------------------------------------------------------------------- /ant-react/src/locales/ja-JP/globalHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/ja-JP/globalHeader.ts -------------------------------------------------------------------------------- /ant-react/src/locales/ja-JP/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/ja-JP/menu.ts -------------------------------------------------------------------------------- /ant-react/src/locales/ja-JP/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/ja-JP/pages.ts -------------------------------------------------------------------------------- /ant-react/src/locales/ja-JP/pwa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/ja-JP/pwa.ts -------------------------------------------------------------------------------- /ant-react/src/locales/ja-JP/settingDrawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/ja-JP/settingDrawer.ts -------------------------------------------------------------------------------- /ant-react/src/locales/ja-JP/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/ja-JP/settings.ts -------------------------------------------------------------------------------- /ant-react/src/locales/pt-BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/pt-BR.ts -------------------------------------------------------------------------------- /ant-react/src/locales/pt-BR/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/pt-BR/component.ts -------------------------------------------------------------------------------- /ant-react/src/locales/pt-BR/globalHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/pt-BR/globalHeader.ts -------------------------------------------------------------------------------- /ant-react/src/locales/pt-BR/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/pt-BR/menu.ts -------------------------------------------------------------------------------- /ant-react/src/locales/pt-BR/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/pt-BR/pages.ts -------------------------------------------------------------------------------- /ant-react/src/locales/pt-BR/pwa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/pt-BR/pwa.ts -------------------------------------------------------------------------------- /ant-react/src/locales/pt-BR/settingDrawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/pt-BR/settingDrawer.ts -------------------------------------------------------------------------------- /ant-react/src/locales/pt-BR/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/pt-BR/settings.ts -------------------------------------------------------------------------------- /ant-react/src/locales/zh-CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/zh-CN.ts -------------------------------------------------------------------------------- /ant-react/src/locales/zh-CN/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/zh-CN/component.ts -------------------------------------------------------------------------------- /ant-react/src/locales/zh-CN/globalHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/zh-CN/globalHeader.ts -------------------------------------------------------------------------------- /ant-react/src/locales/zh-CN/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/zh-CN/menu.ts -------------------------------------------------------------------------------- /ant-react/src/locales/zh-CN/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/zh-CN/pages.ts -------------------------------------------------------------------------------- /ant-react/src/locales/zh-CN/pwa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/zh-CN/pwa.ts -------------------------------------------------------------------------------- /ant-react/src/locales/zh-CN/settingDrawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/zh-CN/settingDrawer.ts -------------------------------------------------------------------------------- /ant-react/src/locales/zh-CN/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/zh-CN/settings.ts -------------------------------------------------------------------------------- /ant-react/src/locales/zh-TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/zh-TW.ts -------------------------------------------------------------------------------- /ant-react/src/locales/zh-TW/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/zh-TW/component.ts -------------------------------------------------------------------------------- /ant-react/src/locales/zh-TW/globalHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/zh-TW/globalHeader.ts -------------------------------------------------------------------------------- /ant-react/src/locales/zh-TW/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/zh-TW/menu.ts -------------------------------------------------------------------------------- /ant-react/src/locales/zh-TW/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/zh-TW/pages.ts -------------------------------------------------------------------------------- /ant-react/src/locales/zh-TW/pwa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/zh-TW/pwa.ts -------------------------------------------------------------------------------- /ant-react/src/locales/zh-TW/settingDrawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/zh-TW/settingDrawer.ts -------------------------------------------------------------------------------- /ant-react/src/locales/zh-TW/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/locales/zh-TW/settings.ts -------------------------------------------------------------------------------- /ant-react/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/manifest.json -------------------------------------------------------------------------------- /ant-react/src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/404.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Admin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Admin.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Data/Calc/CalcRuleResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Data/Calc/CalcRuleResult.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Data/Calc/CalcRuleUpdateForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Data/Calc/CalcRuleUpdateForm.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Data/Calc/MockRun.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Data/Calc/MockRun.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Data/Calc/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Data/Calc/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Data/CalcParam/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Data/CalcParam/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Data/ScriptParam/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Data/ScriptParam/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Data/ScriptWaring/History.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Data/ScriptWaring/History.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Data/ScriptWaring/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Data/ScriptWaring/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Data/Signal/DeviceUidShow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Data/Signal/DeviceUidShow.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Data/Signal/History.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Data/Signal/History.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Data/Signal/SignalNameShow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Data/Signal/SignalNameShow.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Data/Signal/SignalUpdateForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Data/Signal/SignalUpdateForm.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Data/Signal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Data/Signal/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Data/SignalVis/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Data/SignalVis/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Data/SignalWaring/History.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Data/SignalWaring/History.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Data/SignalWaring/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Data/SignalWaring/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Device/DeviceInfo/DeviceInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Device/DeviceInfo/DeviceInfo.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Lifecycle/SimList/SimList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Lifecycle/SimList/SimList.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Protocol/coap/nodes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Protocol/coap/nodes/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Protocol/http/nodes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Protocol/http/nodes/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Protocol/mqtt/nodes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Protocol/mqtt/nodes/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Protocol/tcp/clients/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Protocol/tcp/clients/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Protocol/tcp/nodes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Protocol/tcp/nodes/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Protocol/ws/clients/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Protocol/ws/clients/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Protocol/ws/nodes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Protocol/ws/nodes/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/TableList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/TableList/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/User/DeptList/DeptList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/User/DeptList/DeptList.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/User/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/User/Login/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/User/Login/login.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/User/Login/login.test.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/User/RoleList/RoleList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/User/RoleList/RoleList.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/User/UserList/UserList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/User/UserList/UserList.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/Welcome.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/dashboard/AlarmStatistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/dashboard/AlarmStatistics.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/dashboard/DeviceMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/dashboard/DeviceMap.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/dashboard/DeviceStatsChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/dashboard/DeviceStatsChart.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/dashboard/MessageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/dashboard/MessageList.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/dashboard/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/forward/cassandra/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/forward/cassandra/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/forward/clickhouse/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/forward/clickhouse/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/forward/influxdb2/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/forward/influxdb2/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/forward/mongo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/forward/mongo/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/forward/mongo_bind/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/forward/mongo_bind/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/forward/mysql/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/forward/mysql/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/forward/mysql_bind/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/forward/mysql_bind/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/mirror/admin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/mirror/admin/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/mirror/protocol/coap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/mirror/protocol/coap.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/mirror/protocol/http.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/mirror/protocol/http.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/mirror/protocol/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/mirror/protocol/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/mirror/protocol/mqtt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/mirror/protocol/mqtt.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/mirror/protocol/tcp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/mirror/protocol/tcp.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/mirror/protocol/ws.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/mirror/protocol/ws.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/notice/dingding/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/notice/dingding/index.tsx -------------------------------------------------------------------------------- /ant-react/src/pages/notice/feishu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/pages/notice/feishu/index.tsx -------------------------------------------------------------------------------- /ant-react/src/requestErrorConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/requestErrorConfig.ts -------------------------------------------------------------------------------- /ant-react/src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/service-worker.js -------------------------------------------------------------------------------- /ant-react/src/services/ant-design-pro/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/services/ant-design-pro/api.ts -------------------------------------------------------------------------------- /ant-react/src/services/ant-design-pro/common.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ant-react/src/services/ant-design-pro/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/services/ant-design-pro/index.ts -------------------------------------------------------------------------------- /ant-react/src/services/ant-design-pro/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/services/ant-design-pro/login.ts -------------------------------------------------------------------------------- /ant-react/src/services/ant-design-pro/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/services/ant-design-pro/typings.d.ts -------------------------------------------------------------------------------- /ant-react/src/services/swagger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/services/swagger/index.ts -------------------------------------------------------------------------------- /ant-react/src/services/swagger/pet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/services/swagger/pet.ts -------------------------------------------------------------------------------- /ant-react/src/services/swagger/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/services/swagger/store.ts -------------------------------------------------------------------------------- /ant-react/src/services/swagger/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/services/swagger/typings.d.ts -------------------------------------------------------------------------------- /ant-react/src/services/swagger/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/services/swagger/user.ts -------------------------------------------------------------------------------- /ant-react/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/src/typings.d.ts -------------------------------------------------------------------------------- /ant-react/tests/setupTests.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/tests/setupTests.jsx -------------------------------------------------------------------------------- /ant-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/tsconfig.json -------------------------------------------------------------------------------- /ant-react/types/cache/cache.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /ant-react/types/cache/login.cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/types/cache/login.cache.json -------------------------------------------------------------------------------- /ant-react/types/cache/mock/login.mock.cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/types/cache/mock/login.mock.cache.js -------------------------------------------------------------------------------- /ant-react/types/cache/mock/mock.cache.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ant-react/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-react/types/index.d.ts -------------------------------------------------------------------------------- /ant-vue/.commitlintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@commitlint/config-conventional"] 3 | } -------------------------------------------------------------------------------- /ant-vue/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/.env.development -------------------------------------------------------------------------------- /ant-vue/.env.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/.env.docker -------------------------------------------------------------------------------- /ant-vue/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/.env.production -------------------------------------------------------------------------------- /ant-vue/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/.eslintrc.cjs -------------------------------------------------------------------------------- /ant-vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/.gitignore -------------------------------------------------------------------------------- /ant-vue/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/.prettierrc -------------------------------------------------------------------------------- /ant-vue/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/.vscode/extensions.json -------------------------------------------------------------------------------- /ant-vue/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/.vscode/settings.json -------------------------------------------------------------------------------- /ant-vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/README.md -------------------------------------------------------------------------------- /ant-vue/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/env.d.ts -------------------------------------------------------------------------------- /ant-vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/index.html -------------------------------------------------------------------------------- /ant-vue/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/nginx.conf -------------------------------------------------------------------------------- /ant-vue/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/package-lock.json -------------------------------------------------------------------------------- /ant-vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/package.json -------------------------------------------------------------------------------- /ant-vue/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/pnpm-lock.yaml -------------------------------------------------------------------------------- /ant-vue/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/public/vite.svg -------------------------------------------------------------------------------- /ant-vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/App.vue -------------------------------------------------------------------------------- /ant-vue/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/api/index.ts -------------------------------------------------------------------------------- /ant-vue/src/components/Tag/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/components/Tag/index.vue -------------------------------------------------------------------------------- /ant-vue/src/components/echarts/index.d.ts: -------------------------------------------------------------------------------- 1 | export { default } from './index.vue'; 2 | -------------------------------------------------------------------------------- /ant-vue/src/components/echarts/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/components/echarts/index.vue -------------------------------------------------------------------------------- /ant-vue/src/components/echarts/walden.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/components/echarts/walden.project.json -------------------------------------------------------------------------------- /ant-vue/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/components/index.ts -------------------------------------------------------------------------------- /ant-vue/src/components/select/CalculateSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/components/select/CalculateSelect.vue -------------------------------------------------------------------------------- /ant-vue/src/components/select/DeptSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/components/select/DeptSelect.vue -------------------------------------------------------------------------------- /ant-vue/src/components/select/MqttModSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/components/select/MqttModSelect.vue -------------------------------------------------------------------------------- /ant-vue/src/components/select/MqttSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/components/select/MqttSelect.vue -------------------------------------------------------------------------------- /ant-vue/src/components/select/Product.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/components/select/Product.vue -------------------------------------------------------------------------------- /ant-vue/src/components/select/SignalModeSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/components/select/SignalModeSelect.vue -------------------------------------------------------------------------------- /ant-vue/src/components/select/SignalSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/components/select/SignalSelect.vue -------------------------------------------------------------------------------- /ant-vue/src/components/upload/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/components/upload/index.vue -------------------------------------------------------------------------------- /ant-vue/src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/constants/index.ts -------------------------------------------------------------------------------- /ant-vue/src/directives/copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/directives/copy.ts -------------------------------------------------------------------------------- /ant-vue/src/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/directives/index.ts -------------------------------------------------------------------------------- /ant-vue/src/directives/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/directives/permission.ts -------------------------------------------------------------------------------- /ant-vue/src/directives/resize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/directives/resize.ts -------------------------------------------------------------------------------- /ant-vue/src/hooks/useAddPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/hooks/useAddPage.ts -------------------------------------------------------------------------------- /ant-vue/src/hooks/useColumns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/hooks/useColumns.ts -------------------------------------------------------------------------------- /ant-vue/src/hooks/useDeletePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/hooks/useDeletePage.ts -------------------------------------------------------------------------------- /ant-vue/src/hooks/useECharts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/hooks/useECharts.ts -------------------------------------------------------------------------------- /ant-vue/src/hooks/useEditableData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/hooks/useEditableData.ts -------------------------------------------------------------------------------- /ant-vue/src/hooks/usePagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/hooks/usePagination.ts -------------------------------------------------------------------------------- /ant-vue/src/hooks/useQueryPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/hooks/useQueryPage.ts -------------------------------------------------------------------------------- /ant-vue/src/hooks/useRoles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/hooks/useRoles.ts -------------------------------------------------------------------------------- /ant-vue/src/hooks/useRouteJump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/hooks/useRouteJump.ts -------------------------------------------------------------------------------- /ant-vue/src/hooks/useTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/hooks/useTheme.ts -------------------------------------------------------------------------------- /ant-vue/src/hooks/useUpdatePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/hooks/useUpdatePage.ts -------------------------------------------------------------------------------- /ant-vue/src/i18n/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/i18n/en.ts -------------------------------------------------------------------------------- /ant-vue/src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/i18n/index.ts -------------------------------------------------------------------------------- /ant-vue/src/i18n/zh-CHS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/i18n/zh-CHS.ts -------------------------------------------------------------------------------- /ant-vue/src/icons/complex.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: ["preset-default", "prefixIds"], 3 | }; 4 | -------------------------------------------------------------------------------- /ant-vue/src/icons/complex/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/icons/complex/empty.svg -------------------------------------------------------------------------------- /ant-vue/src/icons/simple.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/icons/simple.config.cjs -------------------------------------------------------------------------------- /ant-vue/src/icons/simple/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/icons/simple/loading.svg -------------------------------------------------------------------------------- /ant-vue/src/layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/layout/index.vue -------------------------------------------------------------------------------- /ant-vue/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/main.ts -------------------------------------------------------------------------------- /ant-vue/src/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/permission.ts -------------------------------------------------------------------------------- /ant-vue/src/plugins/vxe-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/plugins/vxe-table.ts -------------------------------------------------------------------------------- /ant-vue/src/request/cancel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/request/cancel.ts -------------------------------------------------------------------------------- /ant-vue/src/request/empty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/request/empty.ts -------------------------------------------------------------------------------- /ant-vue/src/request/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/request/error.ts -------------------------------------------------------------------------------- /ant-vue/src/request/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/request/index.ts -------------------------------------------------------------------------------- /ant-vue/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/router/index.ts -------------------------------------------------------------------------------- /ant-vue/src/router/single.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/router/single.ts -------------------------------------------------------------------------------- /ant-vue/src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/stores/index.ts -------------------------------------------------------------------------------- /ant-vue/src/stores/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/stores/permission.ts -------------------------------------------------------------------------------- /ant-vue/src/stores/routerPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/stores/routerPath.ts -------------------------------------------------------------------------------- /ant-vue/src/stores/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/stores/theme.ts -------------------------------------------------------------------------------- /ant-vue/src/styles/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/styles/index.less -------------------------------------------------------------------------------- /ant-vue/src/styles/library.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/styles/library.less -------------------------------------------------------------------------------- /ant-vue/src/styles/scrollbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/styles/scrollbar.less -------------------------------------------------------------------------------- /ant-vue/src/styles/variable.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/styles/variable.less -------------------------------------------------------------------------------- /ant-vue/src/theme/dark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/theme/dark.ts -------------------------------------------------------------------------------- /ant-vue/src/theme/light.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/theme/light.ts -------------------------------------------------------------------------------- /ant-vue/src/types/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/types/form.ts -------------------------------------------------------------------------------- /ant-vue/src/utils/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/utils/color.ts -------------------------------------------------------------------------------- /ant-vue/src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/utils/date.ts -------------------------------------------------------------------------------- /ant-vue/src/utils/el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/utils/el.ts -------------------------------------------------------------------------------- /ant-vue/src/utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/utils/i18n.ts -------------------------------------------------------------------------------- /ant-vue/src/utils/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/utils/permission.ts -------------------------------------------------------------------------------- /ant-vue/src/utils/setAxiosConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/utils/setAxiosConfig.ts -------------------------------------------------------------------------------- /ant-vue/src/views/calculate-parameters/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/calculate-parameters/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/calculation-rules/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/calculation-rules/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/calculation-view/add.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/calculation-view/add.vue -------------------------------------------------------------------------------- /ant-vue/src/views/calculation-view/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/calculation-view/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/cassandra/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/cassandra/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/clickhouse/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/clickhouse/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/coap/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/coap/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/comp-preview/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/comp-preview/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/dept/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/dept/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/deviceGroup/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/deviceGroup/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/deviceGroup/modal/bindDevice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/deviceGroup/modal/bindDevice.vue -------------------------------------------------------------------------------- /ant-vue/src/views/deviceInfos/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/deviceInfos/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/dingdingRobot/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/dingdingRobot/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/draggable/add.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/draggable/add.vue -------------------------------------------------------------------------------- /ant-vue/src/views/draggable/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/draggable/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/feishuRobot/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/feishuRobot/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/http/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/http/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/icon-preview/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/icon-preview/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/influxdb2/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/influxdb2/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/message-list/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/message-list/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/mongo/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/mongo/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/mqtt-management/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/mqtt-management/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/mysql/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/mysql/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/node-details/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/node-details/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/product/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/product/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/production-plans/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/production-plans/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/repair-records/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/repair-records/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/role/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/role/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/script-alarm/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/script-alarm/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/shipment-records/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/shipment-records/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/signal-configuration/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/signal-configuration/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/signal/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/signal/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/sim-card/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/sim-card/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/tcp/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/tcp/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/user/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/user/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/visualization/add.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/visualization/add.vue -------------------------------------------------------------------------------- /ant-vue/src/views/visualization/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/visualization/index.vue -------------------------------------------------------------------------------- /ant-vue/src/views/visualization/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/visualization/list.vue -------------------------------------------------------------------------------- /ant-vue/src/views/websocket/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/src/views/websocket/index.vue -------------------------------------------------------------------------------- /ant-vue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/tsconfig.json -------------------------------------------------------------------------------- /ant-vue/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/tsconfig.node.json -------------------------------------------------------------------------------- /ant-vue/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/ant-vue/vite.config.ts -------------------------------------------------------------------------------- /deploy/IotAdminReact.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/deploy/IotAdminReact.Dockerfile -------------------------------------------------------------------------------- /deploy/IotAdminVue.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/deploy/IotAdminVue.Dockerfile -------------------------------------------------------------------------------- /deploy/IotGoMQ.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/deploy/IotGoMQ.Dockerfile -------------------------------------------------------------------------------- /deploy/IotGoProject.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/deploy/IotGoProject.Dockerfile -------------------------------------------------------------------------------- /deploy/IotMQTT.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/deploy/IotMQTT.Dockerfile -------------------------------------------------------------------------------- /deploy/mqtt客户端管理项目部署.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/deploy/mqtt客户端管理项目部署.md -------------------------------------------------------------------------------- /deploy/rabbit消费者部署.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/deploy/rabbit消费者部署.md -------------------------------------------------------------------------------- /deploy/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/deploy/readme.md -------------------------------------------------------------------------------- /deploy/后台服务部署.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/deploy/后台服务部署.md -------------------------------------------------------------------------------- /deploy/环境部署.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/deploy/环境部署.md -------------------------------------------------------------------------------- /doc/Go IoT 开发平台对数据上报的思考.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/Go IoT 开发平台对数据上报的思考.md -------------------------------------------------------------------------------- /doc/GoIoT开发平台介绍.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/GoIoT开发平台介绍.pdf -------------------------------------------------------------------------------- /doc/GoIoT开发平台分析.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/GoIoT开发平台分析.pdf -------------------------------------------------------------------------------- /doc/MQTT客户端管理方案.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/MQTT客户端管理方案.md -------------------------------------------------------------------------------- /doc/MQTT客户端管理方案/MQTT客户端保活.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/MQTT客户端管理方案/MQTT客户端保活.drawio.png -------------------------------------------------------------------------------- /doc/MQTT客户端管理方案/MQTT客户端管理方案.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/MQTT客户端管理方案/MQTT客户端管理方案.drawio.png -------------------------------------------------------------------------------- /doc/MQTT客户端管理方案/image-20240423094241762.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/MQTT客户端管理方案/image-20240423094241762.png -------------------------------------------------------------------------------- /doc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/readme.md -------------------------------------------------------------------------------- /doc/功能说明/人员管理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/功能说明/人员管理.md -------------------------------------------------------------------------------- /doc/功能说明/协议管理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/功能说明/协议管理.md -------------------------------------------------------------------------------- /doc/功能说明/数据管理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/功能说明/数据管理.md -------------------------------------------------------------------------------- /doc/功能说明/生命周期.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/功能说明/生命周期.md -------------------------------------------------------------------------------- /doc/功能说明/通知管理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/功能说明/通知管理.md -------------------------------------------------------------------------------- /doc/报警.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/报警.md -------------------------------------------------------------------------------- /doc/报警/数值报警.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/报警/数值报警.drawio.png -------------------------------------------------------------------------------- /doc/报警/脚本报警.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/报警/脚本报警.drawio.png -------------------------------------------------------------------------------- /doc/数据流转链路.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/数据流转链路.md -------------------------------------------------------------------------------- /doc/数据流转链路/设备数据流转链路.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/数据流转链路/设备数据流转链路.drawio.png -------------------------------------------------------------------------------- /doc/测试方案.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/测试方案.md -------------------------------------------------------------------------------- /doc/设备模拟.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/设备模拟.md -------------------------------------------------------------------------------- /doc/部署.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/部署.md -------------------------------------------------------------------------------- /doc/部署/image-20240902123240839.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/部署/image-20240902123240839.png -------------------------------------------------------------------------------- /doc/部署/image-20240902123753596.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/部署/image-20240902123753596.png -------------------------------------------------------------------------------- /doc/部署/image-20240902123825724.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/doc/部署/image-20240902123825724.png -------------------------------------------------------------------------------- /docker/afa/config/mosquitto.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/afa/config/mosquitto.conf -------------------------------------------------------------------------------- /docker/afa/config/pwfile: -------------------------------------------------------------------------------- 1 | admin:$7$101$7pMdyMqcznuKysFg$ahJltcwpB37+8xm+sV2STNDiBcaLuPE9DASkxYjTYqrMHLlYtBRdDGyGQqvCY/wfQaKySycjJECVPHXRHAxggg== 2 | -------------------------------------------------------------------------------- /docker/afa/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/afa/docker-compose.yml -------------------------------------------------------------------------------- /docker/app-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/app-start.sh -------------------------------------------------------------------------------- /docker/app/docker-compose.react.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/app/docker-compose.react.yml -------------------------------------------------------------------------------- /docker/app/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/app/docker-compose.yml -------------------------------------------------------------------------------- /docker/app/iot-project/config/app-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/app/iot-project/config/app-local.yml -------------------------------------------------------------------------------- /docker/app/mq/config/app-local-calc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/app/mq/config/app-local-calc.yml -------------------------------------------------------------------------------- /docker/app/mq/config/app-local-pre_handler-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/app/mq/config/app-local-pre_handler-1.yml -------------------------------------------------------------------------------- /docker/app/mq/config/app-local-pre_handler-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/app/mq/config/app-local-pre_handler-2.yml -------------------------------------------------------------------------------- /docker/app/mq/config/app-local-pre_handler-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/app/mq/config/app-local-pre_handler-3.yml -------------------------------------------------------------------------------- /docker/app/mq/config/app-local-pre_handler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/app/mq/config/app-local-pre_handler.yml -------------------------------------------------------------------------------- /docker/app/mq/config/app-local-waring_handler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/app/mq/config/app-local-waring_handler.yml -------------------------------------------------------------------------------- /docker/app/mq/config/app-local-wd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/app/mq/config/app-local-wd.yml -------------------------------------------------------------------------------- /docker/app/mqtt/config/app-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/app/mqtt/config/app-local.yml -------------------------------------------------------------------------------- /docker/app/mqtt/config/app-local2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/app/mqtt/config/app-local2.yml -------------------------------------------------------------------------------- /docker/app/mqtt/config/app-local3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/app/mqtt/config/app-local3.yml -------------------------------------------------------------------------------- /docker/env-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env-start.sh -------------------------------------------------------------------------------- /docker/env/Cassandra/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/Cassandra/docker-compose.yml -------------------------------------------------------------------------------- /docker/env/Pulsar/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/Pulsar/docker-compose.yml -------------------------------------------------------------------------------- /docker/env/base-env-docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/base-env-docker-compose.yml -------------------------------------------------------------------------------- /docker/env/big-data-env-docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/big-data-env-docker-compose.yml -------------------------------------------------------------------------------- /docker/env/clickhouse/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/clickhouse/config/config.xml -------------------------------------------------------------------------------- /docker/env/clickhouse/config/users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/clickhouse/config/users.xml -------------------------------------------------------------------------------- /docker/env/clickhouse/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/clickhouse/docker-compose.yml -------------------------------------------------------------------------------- /docker/env/influx/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/influx/docker-compose.yml -------------------------------------------------------------------------------- /docker/env/influx/influxv2.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/influx/influxv2.env -------------------------------------------------------------------------------- /docker/env/influx/telegraf/mytelegraf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/influx/telegraf/mytelegraf.conf -------------------------------------------------------------------------------- /docker/env/iotdb/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/iotdb/docker-compose.yml -------------------------------------------------------------------------------- /docker/env/kafka/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/kafka/docker-compose.yml -------------------------------------------------------------------------------- /docker/env/mongo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/mongo/docker-compose.yml -------------------------------------------------------------------------------- /docker/env/mongo/init-mongo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/mongo/init-mongo.js -------------------------------------------------------------------------------- /docker/env/mqtt/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/mqtt/docker-compose.yml -------------------------------------------------------------------------------- /docker/env/mqtt/mock/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/mqtt/mock/Dockerfile -------------------------------------------------------------------------------- /docker/env/mqtt/mock/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/mqtt/mock/go.mod -------------------------------------------------------------------------------- /docker/env/mqtt/mock/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/mqtt/mock/go.sum -------------------------------------------------------------------------------- /docker/env/mqtt/mock/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/mqtt/mock/main.go -------------------------------------------------------------------------------- /docker/env/mqtt/mock/mqtt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/mqtt/mock/mqtt.yml -------------------------------------------------------------------------------- /docker/env/mqtt/mock/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/mqtt/mock/start.sh -------------------------------------------------------------------------------- /docker/env/mqtt/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/mqtt/readme.md -------------------------------------------------------------------------------- /docker/env/mysql/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/mysql/docker-compose.yml -------------------------------------------------------------------------------- /docker/env/rabbitmq/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/rabbitmq/Dockerfile -------------------------------------------------------------------------------- /docker/env/rabbitmq/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/rabbitmq/docker-compose.yml -------------------------------------------------------------------------------- /docker/env/rabbitmq/enabled_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/rabbitmq/enabled_plugins -------------------------------------------------------------------------------- /docker/env/redis/conf/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/redis/conf/redis.conf -------------------------------------------------------------------------------- /docker/env/redis/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/redis/docker-compose.yml -------------------------------------------------------------------------------- /docker/env/rocketmq/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/env/rocketmq/docker-compose.yml -------------------------------------------------------------------------------- /docker/metricsMonitor/grafana/config/grafana.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/metricsMonitor/grafana/config/grafana.ini -------------------------------------------------------------------------------- /docker/metricsMonitor/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/docker/metricsMonitor/prometheus/prometheus.yml -------------------------------------------------------------------------------- /docker/rabbitmq/data/.erlang.cookie: -------------------------------------------------------------------------------- 1 | MQYFVUNDKSFGEFEDDIWO -------------------------------------------------------------------------------- /go-iot-mq/MongoUt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/MongoUt.go -------------------------------------------------------------------------------- /go-iot-mq/app-local-calc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/app-local-calc.yml -------------------------------------------------------------------------------- /go-iot-mq/app-local-pre_coap_handler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/app-local-pre_coap_handler.yml -------------------------------------------------------------------------------- /go-iot-mq/app-local-pre_handler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/app-local-pre_handler.yml -------------------------------------------------------------------------------- /go-iot-mq/app-local-pre_http_handler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/app-local-pre_http_handler.yml -------------------------------------------------------------------------------- /go-iot-mq/app-local-pre_tcp_handler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/app-local-pre_tcp_handler.yml -------------------------------------------------------------------------------- /go-iot-mq/app-local-pre_ws_handler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/app-local-pre_ws_handler.yml -------------------------------------------------------------------------------- /go-iot-mq/app-local-transmit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/app-local-transmit.yml -------------------------------------------------------------------------------- /go-iot-mq/app-local-waring_handler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/app-local-waring_handler.yml -------------------------------------------------------------------------------- /go-iot-mq/app-local-wd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/app-local-wd.yml -------------------------------------------------------------------------------- /go-iot-mq/app-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/app-local.yml -------------------------------------------------------------------------------- /go-iot-mq/customer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/customer.go -------------------------------------------------------------------------------- /go-iot-mq/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/go.mod -------------------------------------------------------------------------------- /go-iot-mq/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/go.sum -------------------------------------------------------------------------------- /go-iot-mq/handler_calc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/handler_calc.go -------------------------------------------------------------------------------- /go-iot-mq/handler_coap_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/handler_coap_storage.go -------------------------------------------------------------------------------- /go-iot-mq/handler_http_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/handler_http_storage.go -------------------------------------------------------------------------------- /go-iot-mq/handler_mqtt_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/handler_mqtt_storage.go -------------------------------------------------------------------------------- /go-iot-mq/handler_notice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/handler_notice.go -------------------------------------------------------------------------------- /go-iot-mq/handler_tcp_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/handler_tcp_storage.go -------------------------------------------------------------------------------- /go-iot-mq/handler_transmit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/handler_transmit.go -------------------------------------------------------------------------------- /go-iot-mq/handler_waring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/handler_waring.go -------------------------------------------------------------------------------- /go-iot-mq/handler_waring_delay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/handler_waring_delay.go -------------------------------------------------------------------------------- /go-iot-mq/handler_ws_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/handler_ws_storage.go -------------------------------------------------------------------------------- /go-iot-mq/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/log.go -------------------------------------------------------------------------------- /go-iot-mq/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/main.go -------------------------------------------------------------------------------- /go-iot-mq/mq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/mq.go -------------------------------------------------------------------------------- /go-iot-mq/push_time_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/push_time_check.go -------------------------------------------------------------------------------- /go-iot-mq/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/redis.go -------------------------------------------------------------------------------- /go-iot-mq/start-calc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/start-calc.sh -------------------------------------------------------------------------------- /go-iot-mq/start-pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/start-pre.sh -------------------------------------------------------------------------------- /go-iot-mq/start-waring.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/start-waring.sh -------------------------------------------------------------------------------- /go-iot-mq/start-wd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/start-wd.sh -------------------------------------------------------------------------------- /go-iot-mq/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/structs.go -------------------------------------------------------------------------------- /go-iot-mq/z_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot-mq/z_test.go -------------------------------------------------------------------------------- /go-iot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/.gitignore -------------------------------------------------------------------------------- /go-iot/app-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/app-local.yml -------------------------------------------------------------------------------- /go-iot/app-local2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/app-local2.yml -------------------------------------------------------------------------------- /go-iot/beat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/beat.go -------------------------------------------------------------------------------- /go-iot/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/build.sh -------------------------------------------------------------------------------- /go-iot/c.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go-iot/ctr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/ctr.go -------------------------------------------------------------------------------- /go-iot/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/go.mod -------------------------------------------------------------------------------- /go-iot/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/go.sum -------------------------------------------------------------------------------- /go-iot/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/log.go -------------------------------------------------------------------------------- /go-iot/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/main.go -------------------------------------------------------------------------------- /go-iot/mq_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/mq_test.go -------------------------------------------------------------------------------- /go-iot/mqtt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/mqtt.go -------------------------------------------------------------------------------- /go-iot/mqtt_redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/mqtt_redis.go -------------------------------------------------------------------------------- /go-iot/mqtt_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/mqtt_service.go -------------------------------------------------------------------------------- /go-iot/rabbit_mq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/rabbit_mq.go -------------------------------------------------------------------------------- /go-iot/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/readme.md -------------------------------------------------------------------------------- /go-iot/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/redis.go -------------------------------------------------------------------------------- /go-iot/redis_lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/redis_lock.go -------------------------------------------------------------------------------- /go-iot/service_instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/service_instance.go -------------------------------------------------------------------------------- /go-iot/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/go-iot/start.sh -------------------------------------------------------------------------------- /iot-go-project/app-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/app-local.yml -------------------------------------------------------------------------------- /iot-go-project/biz/calc_param_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/calc_param_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/calc_rule_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/calc_rule_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/calc_run_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/calc_run_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/coap_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/coap_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/cron_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/cron_test.go -------------------------------------------------------------------------------- /iot-go-project/biz/dashboard_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/dashboard_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/dept_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/dept_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/device_group_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/device_group_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/device_info_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/device_info_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/device_install_record_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/device_install_record_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/http_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/http_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/influxdb_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/influxdb_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/message_list_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/message_list_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/mqtt_client_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/mqtt_client_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/node_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/node_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/notice/dingding_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/notice/dingding_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/notice/feishu_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/notice/feishu_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/product_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/product_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/production_plan_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/production_plan_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/redis_expire_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/redis_expire_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/repair_record_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/repair_record_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/role_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/role_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/script_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/script_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/script_list_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/script_list_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/script_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/script_test.go -------------------------------------------------------------------------------- /iot-go-project/biz/shipment_record_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/shipment_record_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/signal_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/signal_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/signal_delay_waring_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/signal_delay_waring_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/sim_card_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/sim_card_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/tcp_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/tcp_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/transmit/kafka_transmit_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/transmit/kafka_transmit_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/transmit/mongo_transmit_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/transmit/mongo_transmit_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/transmit/mysql_transmit_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/transmit/mysql_transmit_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/transmit/rabbit_transmit_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/transmit/rabbit_transmit_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/user_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/user_biz.go -------------------------------------------------------------------------------- /iot-go-project/biz/ws_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/biz/ws_biz.go -------------------------------------------------------------------------------- /iot-go-project/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/config/config.go -------------------------------------------------------------------------------- /iot-go-project/glob/glob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/glob/glob.go -------------------------------------------------------------------------------- /iot-go-project/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/go.mod -------------------------------------------------------------------------------- /iot-go-project/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/go.sum -------------------------------------------------------------------------------- /iot-go-project/initialize/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/initialize/init.go -------------------------------------------------------------------------------- /iot-go-project/initialize/redis_lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/initialize/redis_lock.go -------------------------------------------------------------------------------- /iot-go-project/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/main.go -------------------------------------------------------------------------------- /iot-go-project/models/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/models/action.go -------------------------------------------------------------------------------- /iot-go-project/models/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/models/models.go -------------------------------------------------------------------------------- /iot-go-project/models/notice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/models/notice.go -------------------------------------------------------------------------------- /iot-go-project/models/transmit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/models/transmit.go -------------------------------------------------------------------------------- /iot-go-project/models/valicate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/models/valicate.go -------------------------------------------------------------------------------- /iot-go-project/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/readme.md -------------------------------------------------------------------------------- /iot-go-project/router/calc_param_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/calc_param_router.go -------------------------------------------------------------------------------- /iot-go-project/router/calc_rule_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/calc_rule_router.go -------------------------------------------------------------------------------- /iot-go-project/router/coap_handler_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/coap_handler_router.go -------------------------------------------------------------------------------- /iot-go-project/router/dashboard_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/dashboard_router.go -------------------------------------------------------------------------------- /iot-go-project/router/data_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/data_router.go -------------------------------------------------------------------------------- /iot-go-project/router/dept_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/dept_router.go -------------------------------------------------------------------------------- /iot-go-project/router/device_group_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/device_group_router.go -------------------------------------------------------------------------------- /iot-go-project/router/device_info_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/device_info_router.go -------------------------------------------------------------------------------- /iot-go-project/router/file_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/file_router.go -------------------------------------------------------------------------------- /iot-go-project/router/http_handler_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/http_handler_router.go -------------------------------------------------------------------------------- /iot-go-project/router/login_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/login_router.go -------------------------------------------------------------------------------- /iot-go-project/router/message_list_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/message_list_router.go -------------------------------------------------------------------------------- /iot-go-project/router/mqtt_client_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/mqtt_client_router.go -------------------------------------------------------------------------------- /iot-go-project/router/notice/dingding_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/notice/dingding_router.go -------------------------------------------------------------------------------- /iot-go-project/router/notice/feishu_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/notice/feishu_router.go -------------------------------------------------------------------------------- /iot-go-project/router/pod_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/pod_router.go -------------------------------------------------------------------------------- /iot-go-project/router/product_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/product_router.go -------------------------------------------------------------------------------- /iot-go-project/router/production_plan_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/production_plan_router.go -------------------------------------------------------------------------------- /iot-go-project/router/promethues.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/promethues.go -------------------------------------------------------------------------------- /iot-go-project/router/protocol_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/protocol_router.go -------------------------------------------------------------------------------- /iot-go-project/router/repair_record_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/repair_record_router.go -------------------------------------------------------------------------------- /iot-go-project/router/role_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/role_router.go -------------------------------------------------------------------------------- /iot-go-project/router/script_list_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/script_list_router.go -------------------------------------------------------------------------------- /iot-go-project/router/shipment_record_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/shipment_record_router.go -------------------------------------------------------------------------------- /iot-go-project/router/signal_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/signal_router.go -------------------------------------------------------------------------------- /iot-go-project/router/sim_card_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/sim_card_router.go -------------------------------------------------------------------------------- /iot-go-project/router/tcp_handler_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/tcp_handler_router.go -------------------------------------------------------------------------------- /iot-go-project/router/user_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/user_router.go -------------------------------------------------------------------------------- /iot-go-project/router/ws_handler_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/router/ws_handler_router.go -------------------------------------------------------------------------------- /iot-go-project/servlet/servlet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/servlet/servlet.go -------------------------------------------------------------------------------- /iot-go-project/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/start.sh -------------------------------------------------------------------------------- /iot-go-project/task/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/task/task.go -------------------------------------------------------------------------------- /iot-go-project/ut/InfluxUt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/ut/InfluxUt.go -------------------------------------------------------------------------------- /iot-go-project/ut/MongoUt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/ut/MongoUt.go -------------------------------------------------------------------------------- /iot-go-project/ut/times.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/iot-go-project/ut/times.go -------------------------------------------------------------------------------- /notice/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/notice/go.mod -------------------------------------------------------------------------------- /notice/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/notice/go.sum -------------------------------------------------------------------------------- /notice/models/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/notice/models/models.go -------------------------------------------------------------------------------- /notice/readme.md: -------------------------------------------------------------------------------- 1 | # notice 2 | 通知服务 3 | 4 | 钉钉通知 5 | 6 | 目前只针对单个信号报警进行通知,脚本模式的暂时不支持 -------------------------------------------------------------------------------- /notice/sender/ding_sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/notice/sender/ding_sender.go -------------------------------------------------------------------------------- /notice/sender/sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/notice/sender/sender.go -------------------------------------------------------------------------------- /notice/test/ding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/notice/test/ding_test.go -------------------------------------------------------------------------------- /operation/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/image.png -------------------------------------------------------------------------------- /operation/操作文档.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档.md -------------------------------------------------------------------------------- /operation/操作文档/image-20240606094255537.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606094255537.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606094311563.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606094311563.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606094417071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606094417071.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606094431736.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606094431736.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606095128822.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606095128822.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606095204696.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606095204696.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606095303850.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606095303850.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606095609024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606095609024.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606101016121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606101016121.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606101935355.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606101935355.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606102215355.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606102215355.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606102407166.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606102407166.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606102427935.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606102427935.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606102919129.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606102919129.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606102937751.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606102937751.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606103447234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606103447234.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606103550811.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606103550811.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606103946874.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606103946874.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606103953112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606103953112.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606104453746.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606104453746.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606104745498.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606104745498.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606105047390.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606105047390.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606105138761.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606105138761.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606105443413.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606105443413.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606105502418.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606105502418.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606105928178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606105928178.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606105954148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606105954148.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606110124477.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606110124477.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606110140876.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606110140876.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606110528155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606110528155.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606110554774.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606110554774.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606110630063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606110630063.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606110653819.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606110653819.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606111305558.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606111305558.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606111429126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606111429126.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606111609969.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606111609969.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606111858944.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606111858944.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606111939061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606111939061.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606112501476.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606112501476.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606112518583.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606112518583.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606112841272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606112841272.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606112945960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606112945960.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606112959902.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606112959902.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606123826130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606123826130.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606123927495.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606123927495.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606124428648.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606124428648.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606124444863.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606124444863.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606124936036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606124936036.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606125101076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606125101076.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606125408906.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606125408906.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606125650440.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606125650440.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606125710860.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606125710860.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606125743694.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606125743694.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606125841654.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606125841654.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606130011982.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606130011982.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606130045585.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606130045585.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606130457564.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606130457564.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606130509502.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606130509502.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606130856586.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606130856586.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606130923434.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606130923434.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606130959242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606130959242.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606135730782.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606135730782.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606135808693.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606135808693.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606135902648.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606135902648.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606140147152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606140147152.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606142743931.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606142743931.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606142934074.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606142934074.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606143003737.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606143003737.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606143149691.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606143149691.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606143413851.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606143413851.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606143635353.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606143635353.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606144929189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606144929189.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606145602958.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606145602958.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606145659098.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606145659098.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606145847500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606145847500.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606145948476.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606145948476.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606150004980.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606150004980.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606150154486.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606150154486.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606150726511.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606150726511.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606150805927.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606150805927.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606150858294.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606150858294.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606151858847.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606151858847.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606151915415.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606151915415.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606152036372.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606152036372.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606152220117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606152220117.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606152257812.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606152257812.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606152646143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606152646143.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606152945561.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606152945561.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606153511205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606153511205.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606153911041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606153911041.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606153937040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606153937040.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606154524267.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606154524267.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606154921513.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606154921513.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606155158429.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606155158429.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606155217737.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606155217737.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606155540984.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606155540984.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606155657395.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606155657395.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606155727562.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606155727562.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606155844230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606155844230.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606160355023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606160355023.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606160413988.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606160413988.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606160958746.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606160958746.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606161321205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606161321205.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606161425423.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606161425423.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606161520450.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606161520450.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606161535507.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606161535507.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606161646066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606161646066.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606161712411.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606161712411.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606161744750.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606161744750.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606161904468.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606161904468.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606162113076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606162113076.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606162136009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606162136009.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606162252098.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606162252098.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606162307908.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606162307908.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606162721881.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606162721881.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606162939311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606162939311.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606163142021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606163142021.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606163211691.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606163211691.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606163315820.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606163315820.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606163335959.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606163335959.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606163441432.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606163441432.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606163457246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606163457246.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606163553406.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606163553406.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606163900046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606163900046.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606163916249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606163916249.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606164219841.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606164219841.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606164308715.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606164308715.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606164324452.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606164324452.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606164753125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606164753125.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606164806521.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606164806521.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606164936877.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606164936877.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606165008936.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606165008936.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606165106823.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606165106823.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606165223720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606165223720.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606165725939.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606165725939.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606165740680.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606165740680.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606165858358.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606165858358.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606170209153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606170209153.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606170230662.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606170230662.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606170243011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606170243011.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606170327143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606170327143.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606170412260.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606170412260.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606170511155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606170511155.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606170549901.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606170549901.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606170711994.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606170711994.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606170832389.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606170832389.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606170845707.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606170845707.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606171045130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606171045130.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240606171235567.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240606171235567.png -------------------------------------------------------------------------------- /operation/操作文档/image-20240607163432931.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/operation/操作文档/image-20240607163432931.png -------------------------------------------------------------------------------- /protocol/coap/app-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/coap/app-local.yml -------------------------------------------------------------------------------- /protocol/coap/beat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/coap/beat.go -------------------------------------------------------------------------------- /protocol/coap/data_handler_st.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/coap/data_handler_st.go -------------------------------------------------------------------------------- /protocol/coap/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/coap/go.mod -------------------------------------------------------------------------------- /protocol/coap/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/coap/go.sum -------------------------------------------------------------------------------- /protocol/coap/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/coap/main.go -------------------------------------------------------------------------------- /protocol/coap/rabbit_mq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/coap/rabbit_mq.go -------------------------------------------------------------------------------- /protocol/coap/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/coap/redis.go -------------------------------------------------------------------------------- /protocol/coap/redis_lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/coap/redis_lock.go -------------------------------------------------------------------------------- /protocol/coap/sample/client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/coap/sample/client/main.go -------------------------------------------------------------------------------- /protocol/coap/sample/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/coap/sample/server/main.go -------------------------------------------------------------------------------- /protocol/coap/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/coap/server.go -------------------------------------------------------------------------------- /protocol/coap/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/coap/task.go -------------------------------------------------------------------------------- /protocol/http/app-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/http/app-local.yml -------------------------------------------------------------------------------- /protocol/http/beat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/http/beat.go -------------------------------------------------------------------------------- /protocol/http/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/http/go.mod -------------------------------------------------------------------------------- /protocol/http/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/http/go.sum -------------------------------------------------------------------------------- /protocol/http/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/http/main.go -------------------------------------------------------------------------------- /protocol/http/rabbit_mq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/http/rabbit_mq.go -------------------------------------------------------------------------------- /protocol/http/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/http/redis.go -------------------------------------------------------------------------------- /protocol/modbus/app-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/modbus/app-local.yml -------------------------------------------------------------------------------- /protocol/modbus/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/modbus/go.mod -------------------------------------------------------------------------------- /protocol/modbus/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/modbus/go.sum -------------------------------------------------------------------------------- /protocol/modbus/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/modbus/main.go -------------------------------------------------------------------------------- /protocol/modbus/rabbit_mq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/modbus/rabbit_mq.go -------------------------------------------------------------------------------- /protocol/modbus/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/modbus/redis.go -------------------------------------------------------------------------------- /protocol/modbus/redis_lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/modbus/redis_lock.go -------------------------------------------------------------------------------- /protocol/modbus/sample/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/modbus/sample/client/client.go -------------------------------------------------------------------------------- /protocol/modbus/sample/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/modbus/sample/server/server.go -------------------------------------------------------------------------------- /protocol/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/readme.md -------------------------------------------------------------------------------- /protocol/readme/image-20240725103427236.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/readme/image-20240725103427236.png -------------------------------------------------------------------------------- /protocol/tcp/app-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/tcp/app-local.yml -------------------------------------------------------------------------------- /protocol/tcp/beat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/tcp/beat.go -------------------------------------------------------------------------------- /protocol/tcp/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/tcp/go.mod -------------------------------------------------------------------------------- /protocol/tcp/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/tcp/go.sum -------------------------------------------------------------------------------- /protocol/tcp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/tcp/main.go -------------------------------------------------------------------------------- /protocol/tcp/rabbit_mq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/tcp/rabbit_mq.go -------------------------------------------------------------------------------- /protocol/tcp/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/tcp/redis.go -------------------------------------------------------------------------------- /protocol/tcp/redis_lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/tcp/redis_lock.go -------------------------------------------------------------------------------- /protocol/tcp/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/tcp/server.go -------------------------------------------------------------------------------- /protocol/tcp/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/tcp/server_test.go -------------------------------------------------------------------------------- /protocol/tcp/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/tcp/task.go -------------------------------------------------------------------------------- /protocol/ws/app-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/ws/app-local.yml -------------------------------------------------------------------------------- /protocol/ws/beat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/ws/beat.go -------------------------------------------------------------------------------- /protocol/ws/ctr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/ws/ctr.go -------------------------------------------------------------------------------- /protocol/ws/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/ws/go.mod -------------------------------------------------------------------------------- /protocol/ws/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/ws/go.sum -------------------------------------------------------------------------------- /protocol/ws/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/ws/main.go -------------------------------------------------------------------------------- /protocol/ws/rabbit_mq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/ws/rabbit_mq.go -------------------------------------------------------------------------------- /protocol/ws/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/ws/redis.go -------------------------------------------------------------------------------- /protocol/ws/redis_lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/ws/redis_lock.go -------------------------------------------------------------------------------- /protocol/ws/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/ws/task.go -------------------------------------------------------------------------------- /protocol/ws/template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/ws/template/index.html -------------------------------------------------------------------------------- /protocol/ws/ws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/protocol/ws/ws.go -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/readme.md -------------------------------------------------------------------------------- /readme/image-20240524123513247.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/readme/image-20240524123513247.png -------------------------------------------------------------------------------- /readme/image-20240524123533112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/readme/image-20240524123533112.png -------------------------------------------------------------------------------- /readme/image-20240524123606435.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/readme/image-20240524123606435.png -------------------------------------------------------------------------------- /readme/image-20240524123618542.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/readme/image-20240524123618542.png -------------------------------------------------------------------------------- /readme/image-20240524123658849.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/readme/image-20240524123658849.png -------------------------------------------------------------------------------- /readme/image-20240524123718443.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/readme/image-20240524123718443.png -------------------------------------------------------------------------------- /readme/image-20240524123729546.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/readme/image-20240524123729546.png -------------------------------------------------------------------------------- /readme/image-20240524123805587.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/readme/image-20240524123805587.png -------------------------------------------------------------------------------- /readme/image-20240524123820684.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/readme/image-20240524123820684.png -------------------------------------------------------------------------------- /readme/o1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/readme/o1.png -------------------------------------------------------------------------------- /readme/数据图.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/readme/数据图.jpg -------------------------------------------------------------------------------- /readme/架构图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/readme/架构图.png -------------------------------------------------------------------------------- /readme/网络-数据结构图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/readme/网络-数据结构图.png -------------------------------------------------------------------------------- /readme_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/readme_CN.md -------------------------------------------------------------------------------- /roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/roadmap.md -------------------------------------------------------------------------------- /swagger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/swagger.sh -------------------------------------------------------------------------------- /test/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/1.txt -------------------------------------------------------------------------------- /test/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/2.txt -------------------------------------------------------------------------------- /test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/Dockerfile -------------------------------------------------------------------------------- /test/MQTT-TEST.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/MQTT-TEST.log -------------------------------------------------------------------------------- /test/b.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/b.go -------------------------------------------------------------------------------- /test/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/check.py -------------------------------------------------------------------------------- /test/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/docker-compose.yml -------------------------------------------------------------------------------- /test/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/go.mod -------------------------------------------------------------------------------- /test/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/go.sum -------------------------------------------------------------------------------- /test/init_redis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/init_redis.sh -------------------------------------------------------------------------------- /test/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/log.go -------------------------------------------------------------------------------- /test/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/main.go -------------------------------------------------------------------------------- /test/mock_coap/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_coap/Dockerfile -------------------------------------------------------------------------------- /test/mock_coap/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_coap/docker-compose.yml -------------------------------------------------------------------------------- /test/mock_coap/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_coap/go.mod -------------------------------------------------------------------------------- /test/mock_coap/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_coap/go.sum -------------------------------------------------------------------------------- /test/mock_coap/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_coap/main.go -------------------------------------------------------------------------------- /test/mock_coap/start_mock_coap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_coap/start_mock_coap.sh -------------------------------------------------------------------------------- /test/mock_http/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_http/Dockerfile -------------------------------------------------------------------------------- /test/mock_http/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_http/docker-compose.yml -------------------------------------------------------------------------------- /test/mock_http/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_http/go.mod -------------------------------------------------------------------------------- /test/mock_http/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_http/go.sum -------------------------------------------------------------------------------- /test/mock_http/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_http/main.go -------------------------------------------------------------------------------- /test/mock_http/start_mock_http.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_http/start_mock_http.sh -------------------------------------------------------------------------------- /test/mock_mqtt/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_mqtt/1.txt -------------------------------------------------------------------------------- /test/mock_mqtt/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_mqtt/Dockerfile -------------------------------------------------------------------------------- /test/mock_mqtt/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_mqtt/docker-compose.yml -------------------------------------------------------------------------------- /test/mock_mqtt/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_mqtt/go.mod -------------------------------------------------------------------------------- /test/mock_mqtt/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_mqtt/go.sum -------------------------------------------------------------------------------- /test/mock_mqtt/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_mqtt/log.go -------------------------------------------------------------------------------- /test/mock_mqtt/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_mqtt/main.go -------------------------------------------------------------------------------- /test/mock_mqtt/start_mock_mqtt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_mqtt/start_mock_mqtt.sh -------------------------------------------------------------------------------- /test/mock_mqtt/v.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_mqtt/v.go -------------------------------------------------------------------------------- /test/mock_tcp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_tcp/Dockerfile -------------------------------------------------------------------------------- /test/mock_tcp/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_tcp/docker-compose.yml -------------------------------------------------------------------------------- /test/mock_tcp/go.mod: -------------------------------------------------------------------------------- 1 | module mock_tcp 2 | 3 | go 1.22.4 4 | -------------------------------------------------------------------------------- /test/mock_tcp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_tcp/main.go -------------------------------------------------------------------------------- /test/mock_tcp/start_mock_tcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_tcp/start_mock_tcp.sh -------------------------------------------------------------------------------- /test/mock_ws/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_ws/Dockerfile -------------------------------------------------------------------------------- /test/mock_ws/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_ws/docker-compose.yml -------------------------------------------------------------------------------- /test/mock_ws/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_ws/go.mod -------------------------------------------------------------------------------- /test/mock_ws/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_ws/go.sum -------------------------------------------------------------------------------- /test/mock_ws/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_ws/main.go -------------------------------------------------------------------------------- /test/mock_ws/start_mock_ws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mock_ws/start_mock_ws.sh -------------------------------------------------------------------------------- /test/mqtt_serv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/mqtt_serv.go -------------------------------------------------------------------------------- /test/v.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/test/v.go -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/todo.md -------------------------------------------------------------------------------- /transmit/cache/transmit_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/transmit/cache/transmit_cache.go -------------------------------------------------------------------------------- /transmit/cache/transmit_cache_biz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/transmit/cache/transmit_cache_biz.go -------------------------------------------------------------------------------- /transmit/cache/transmit_cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/transmit/cache/transmit_cache_test.go -------------------------------------------------------------------------------- /transmit/cassandra/cassandra_op.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/transmit/cassandra/cassandra_op.go -------------------------------------------------------------------------------- /transmit/cassandra/cassandra_op_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/transmit/cassandra/cassandra_op_test.go -------------------------------------------------------------------------------- /transmit/clickhouse/clickhouse_op.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/transmit/clickhouse/clickhouse_op.go -------------------------------------------------------------------------------- /transmit/clickhouse/clickhouse_op_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/transmit/clickhouse/clickhouse_op_test.go -------------------------------------------------------------------------------- /transmit/common/common_interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/transmit/common/common_interface.go -------------------------------------------------------------------------------- /transmit/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/transmit/go.mod -------------------------------------------------------------------------------- /transmit/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/transmit/go.sum -------------------------------------------------------------------------------- /transmit/influxdb2/influxdb_op.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/transmit/influxdb2/influxdb_op.go -------------------------------------------------------------------------------- /transmit/influxdb2/influxdb_op_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/transmit/influxdb2/influxdb_op_test.go -------------------------------------------------------------------------------- /transmit/mongo/mongo_op.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/transmit/mongo/mongo_op.go -------------------------------------------------------------------------------- /transmit/mongo/mongo_op_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/transmit/mongo/mongo_op_test.go -------------------------------------------------------------------------------- /transmit/mysql/mysql_op.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/transmit/mysql/mysql_op.go -------------------------------------------------------------------------------- /transmit/mysql/mysql_op_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/transmit/mysql/mysql_op_test.go -------------------------------------------------------------------------------- /transmit/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/transmit/readme.md -------------------------------------------------------------------------------- /work.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iot-ecology/go-iot-platform/HEAD/work.sh --------------------------------------------------------------------------------