lty-protocol 1.0.40 → 1.0.42

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/README.md +133 -0
  2. package/dist/{views/Ethernet.vue.d.ts → components/base/Panel.vue.d.ts} +4 -2
  3. package/dist/components/{Tab.vue.d.ts → base/Tab.vue.d.ts} +1 -3
  4. package/dist/components/{InputNumber.vue.d.ts → base/baseComponents/Checkbox.vue.d.ts} +1 -0
  5. package/dist/components/base/baseComponents/Input.vue.d.ts +10 -0
  6. package/dist/components/base/baseComponents/InputNumber.vue.d.ts +11 -0
  7. package/dist/components/base/baseComponents/Select.vue.d.ts +13 -0
  8. package/dist/components/base/baseComponents/Table.vue.d.ts +28 -0
  9. package/dist/components/base/baseComponents/index.d.ts +9 -0
  10. package/dist/components/base/index.d.ts +4 -0
  11. package/dist/components/naiveUi/Panel.vue.d.ts +8 -0
  12. package/dist/components/naiveUi/baseComponents/Checkbox.vue.d.ts +10 -0
  13. package/dist/components/naiveUi/baseComponents/Form.vue.d.ts +312 -0
  14. package/dist/components/naiveUi/baseComponents/Input.vue.d.ts +11 -0
  15. package/dist/components/naiveUi/baseComponents/InputNumber.vue.d.ts +14 -0
  16. package/dist/components/naiveUi/baseComponents/IpInput.vue.d.ts +10 -0
  17. package/dist/components/naiveUi/baseComponents/Select.vue.d.ts +16 -0
  18. package/dist/components/naiveUi/baseComponents/Switch.vue.d.ts +9 -0
  19. package/dist/components/naiveUi/baseComponents/Tab.vue.d.ts +23 -0
  20. package/dist/components/naiveUi/baseComponents/Table.vue.d.ts +43 -0
  21. package/dist/components/naiveUi/baseComponents/index.d.ts +11 -0
  22. package/dist/components/naiveUi/index.d.ts +3 -0
  23. package/dist/i18n/index.d.ts +174 -0
  24. package/dist/i18n/lang/en.json.d.ts +106 -0
  25. package/dist/i18n/lang/zh.json.d.ts +106 -0
  26. package/dist/index.d.ts +3 -5
  27. package/dist/keys.d.ts +1 -1
  28. package/dist/lty-protocol.css +1 -1
  29. package/dist/lty-protocol.mjs +34706 -306
  30. package/dist/lty-protocol.umd.js +3195 -1
  31. package/dist/models/collection.d.ts +33 -10
  32. package/dist/models/modbus/EthernetProtocolItem.d.ts +11 -0
  33. package/dist/models/modbus/ModbusTCPClientProtocolItem.d.ts +59 -0
  34. package/dist/models/modbus/ModbusTCPServerProtocolItem.d.ts +11 -0
  35. package/dist/models/modbus/ModbusTCPSlaveDeviceProtocolItem.d.ts +48 -0
  36. package/dist/models/modbus/addressAllocator.d.ts +30 -0
  37. package/dist/models/modbus/configParser.d.ts +1 -0
  38. package/dist/models/modbus/ethernet.json.d.ts +9 -1
  39. package/dist/models/modbus/index.d.ts +7 -29
  40. package/dist/models/modbus/ioMapping.d.ts +33 -0
  41. package/dist/models/modbus/modbusTcpClient.json.d.ts +112 -0
  42. package/dist/models/modbus/modbusTcpServer.json.d.ts +108 -0
  43. package/dist/models/modbus/modbusTcpSlaveDevice.json.d.ts +304 -0
  44. package/dist/models/modbus/types.d.ts +34 -0
  45. package/dist/models/protocolItem.d.ts +53 -1
  46. package/dist/types/base.d.ts +3 -2
  47. package/dist/utils/eventBus.d.ts +9 -0
  48. package/dist/utils/getUUID.d.ts +5 -0
  49. package/dist/utils/index.d.ts +6 -0
  50. package/dist/views/ProtocolPage.vue.d.ts +27 -0
  51. package/dist/views/components/general/index.vue.d.ts +301 -0
  52. package/dist/views/components/index.d.ts +6 -0
  53. package/dist/views/components/modbusChannel/AddChannelModal.vue.d.ts +15 -0
  54. package/dist/views/components/modbusChannel/InfoTable.vue.d.ts +2 -0
  55. package/dist/views/components/modbusChannel/index.vue.d.ts +696 -0
  56. package/dist/views/components/modbusChannel/options.d.ts +13 -0
  57. package/dist/views/components/processData/index.vue.d.ts +24 -0
  58. package/dist/views/components/status/index.vue.d.ts +8620 -0
  59. package/dist/views/components/status/utils/iec-byte-converter.d.ts +100 -0
  60. package/dist/views/components/status/utils/index.d.ts +26 -0
  61. package/dist/views/components/status/xmlFiles/index.d.ts +10 -0
  62. package/dist/views/index.d.ts +3 -0
  63. package/package.json +39 -33
  64. package/dist/plugin.d.ts +0 -3
  65. /package/dist/components/{IpInput.vue.d.ts → base/baseComponents/IpInput.vue.d.ts} +0 -0
  66. /package/dist/components/{Input.vue.d.ts → base/baseComponents/Switch.vue.d.ts} +0 -0
@@ -12,7 +12,13 @@ declare enum ProtocolType {
12
12
  OPCUA_SERVER = "OPCUAServer",
13
13
  ETHER_CAT_MASTER = "EtherCatMaster",
14
14
  ETHER_CAT_SLAVE = "EtherCatSlave",
15
- ETHER_CAT_MODULE = "EtherCatModule"
15
+ ETHER_CAT_MODULE = "EtherCatModule",
16
+ IO_BUS_D_SERIES = "IoBusDSeries",
17
+ IO_BUS_D_SERIES_DEVICE = "IO_Bus_D_Series_Device",
18
+ IO_BUS_D_SERIES_DEVICE_SUB_MODULE = "IO_Bus_D_Series_Device_Sub_Module",
19
+ LOCALBUS = "LocalBus",// localbus根节点
20
+ LOCALBUS_MODULE = "LocalBus_Module",// 子模块菜单
21
+ LOCALBUS_SUB_MODULE = "LocalBus_Sub_Module"
16
22
  }
17
23
  declare const protocolMap: {
18
24
  Pprogrammable: number;
@@ -41,21 +47,38 @@ declare const protocolMap: {
41
47
  };
42
48
  /**
43
49
  * 协议集合
44
- * @function init 初始化协议集合
45
- * @function build 编译协议集合
46
- * @function get 根据ID获取协议
47
- * @function add 添加协议
48
- * @function delete 删除协议
49
- * @function clear 清空协议集合
50
+ * 负责协议模型的注册、实例化和统一管理。
50
51
  */
51
52
  declare class ProtocolCollection implements ICollection<ProtocolItem> {
52
- protected map: Map<number, ProtocolItem>;
53
+ protected map: Map<string | number, ProtocolItem>;
53
54
  constructor();
55
+ /**
56
+ * 用持久化数据重新构建协议实例集合。
57
+ */
54
58
  init(data: any[]): void;
59
+ /**
60
+ * 预留的协议集合编译出口,后续可在这里汇总生成设备配置。
61
+ */
55
62
  build(deviceId: number): any;
56
- get(id: number | number[]): ProtocolItem | ProtocolItem[];
63
+ /**
64
+ * 按单个或多个 ID 获取协议实例。
65
+ */
66
+ get(id: string | number | Array<string | number>): ProtocolItem | ProtocolItem[];
67
+ /**
68
+ * 获取当前集合中的全部协议实例。
69
+ */
70
+ getAll(): ProtocolItem[];
71
+ /**
72
+ * 添加协议实例到集合中。
73
+ */
57
74
  add(data: ProtocolItem): void;
58
- delete(id: number | number[]): void;
75
+ /**
76
+ * 删除单个或多个协议实例。
77
+ */
78
+ delete(id: string | number | Array<string | number>): void;
79
+ /**
80
+ * 清空当前协议集合。
81
+ */
59
82
  private clear;
60
83
  }
61
84
  export { ProtocolType, protocolMap, ProtocolCollection, ProtocolItem };
@@ -0,0 +1,11 @@
1
+ import { ProtocolItem } from '../collection';
2
+ /**
3
+ * 以太网协议模型,当前主要负责装载默认配置。
4
+ */
5
+ declare class EthernetProtocolItem extends ProtocolItem {
6
+ type: string;
7
+ moduleType: number;
8
+ constructor(data: any);
9
+ static fromPlain(data: any): EthernetProtocolItem;
10
+ }
11
+ export { EthernetProtocolItem };
@@ -0,0 +1,59 @@
1
+ import { ProtocolItem } from '../collection';
2
+ import { AddressStartConfig, IoMappingNode } from './types';
3
+ /**
4
+ * Modbus TCP Client 协议模型,负责管理从站通道并生成对应的 IO 映射树。
5
+ */
6
+ declare class ModbusTCPClientProtocolItem extends ProtocolItem {
7
+ type: string;
8
+ moduleType: number;
9
+ protected handleByteStartAddrChange(startAddress: AddressStartConfig): void;
10
+ constructor(data: any);
11
+ static fromPlain(data: any): ModbusTCPClientProtocolItem;
12
+ hasIoMappingChildren(node: IoMappingNode): boolean;
13
+ getIoMappingChildren(node: IoMappingNode): IoMappingNode[] | {
14
+ id: string;
15
+ name: string;
16
+ type: string;
17
+ channel: string;
18
+ address: string;
19
+ prefix: string;
20
+ length: number;
21
+ __byteOffset: number;
22
+ __elementIndex: number;
23
+ }[];
24
+ /**
25
+ * 设置客户端过程数据区的起始地址。
26
+ * 这里传入的是 byte 偏移,不是 %IW/%QW 的序号。
27
+ */
28
+ /**
29
+ * 获取当前客户端过程数据区的布局信息。
30
+ * 返回值中的起止位置和长度都使用 byte 偏移表示。
31
+ */
32
+ /**
33
+ * 新增从站通道后同步刷新 IO 映射。
34
+ */
35
+ addChannel(data: any): void;
36
+ /**
37
+ * 编辑从站通道后同步刷新 IO 映射。
38
+ */
39
+ editChannel(data: any): void;
40
+ /**
41
+ * 删除从站通道后同步刷新 IO 映射。
42
+ */
43
+ deleteChannel(ids: string[]): void;
44
+ /**
45
+ * 将通道配置转换为页面可展示的 IO 树结构。
46
+ */
47
+ /**
48
+ * 根据客户端通道配置重新生成 IO 映射树。
49
+ * startAddress 为可选的 byte 偏移起点。
50
+ */
51
+ /**
52
+ * 根据客户端通道配置重新生成 IO 映射树。
53
+ * startAddress 为可选的 byte 偏移起点。
54
+ * BYTE 类型的长度字段按 bit 数解释,例如长度 11 会生成 2 个 BYTE 节点,最后 1 个节点只展开 3 个 bit。
55
+ * WORD 类型的长度字段仍按 word 数量解释,不按 bit 长度折算。
56
+ */
57
+ updateIoData(startAddress?: AddressStartConfig): void;
58
+ }
59
+ export { ModbusTCPClientProtocolItem };
@@ -0,0 +1,11 @@
1
+ import { ProtocolItem } from '../collection';
2
+ /**
3
+ * Modbus TCP Server 协议模型,负责装载服务端默认配置。
4
+ */
5
+ declare class ModbusTCPServerProtocolItem extends ProtocolItem {
6
+ type: string;
7
+ moduleType: number;
8
+ constructor(data: any);
9
+ static fromPlain(data: any): ModbusTCPServerProtocolItem;
10
+ }
11
+ export { ModbusTCPServerProtocolItem };
@@ -0,0 +1,48 @@
1
+ import { ProtocolItem } from '../collection';
2
+ import { AddressStartConfig, IoMappingNode } from './types';
3
+ /**
4
+ * Modbus TCP 从站设备模型,负责根据配置动态生成 IO 映射和地址布局。
5
+ */
6
+ declare class ModbusTCPSlaveDeviceProtocolItem extends ProtocolItem {
7
+ type: string;
8
+ moduleType: number;
9
+ protected handleByteStartAddrChange(startAddress: AddressStartConfig): void;
10
+ constructor(data: any);
11
+ static fromPlain(data: any): ModbusTCPSlaveDeviceProtocolItem;
12
+ hasIoMappingChildren(node: IoMappingNode): boolean;
13
+ getIoMappingChildren(node: IoMappingNode): IoMappingNode[] | {
14
+ id: string;
15
+ name: string;
16
+ type: string;
17
+ channel: string;
18
+ address: string;
19
+ prefix: string;
20
+ length: number;
21
+ __byteOffset: number;
22
+ __elementIndex: number;
23
+ }[];
24
+ /**
25
+ * 设置从站设备 IO 映射的起始地址。
26
+ * 这里传入的是 byte 偏移,不是 %IW/%QW 的序号。
27
+ */
28
+ /**
29
+ * 返回当前 I/Q 地址区的起始位置、占用长度和最终结束地址。
30
+ */
31
+ /**
32
+ * 返回当前 I/Q 地址区布局信息。
33
+ * 返回值中的起止位置和长度都使用 byte 偏移表示。
34
+ */
35
+ /**
36
+ * 监听关键配置项变化,并在变更时重新生成 IO 映射。
37
+ */
38
+ setupConfigListener(): void;
39
+ /**
40
+ * 根据保持寄存器、输入寄存器、线圈等配置生成完整 IO 映射树。
41
+ */
42
+ /**
43
+ * 根据从站配置生成完整 IO 映射树。
44
+ * startAddress 为可选的 byte 偏移起点。
45
+ */
46
+ updateIoDataFromConfig(startAddress?: AddressStartConfig): void;
47
+ }
48
+ export { ModbusTCPSlaveDeviceProtocolItem };
@@ -0,0 +1,30 @@
1
+ import { AddressStartConfig, IoMappingLayoutInfo, MemoryFamily } from './types';
2
+ declare class IoMappingAddressAllocator {
3
+ private startAddress;
4
+ private cursor;
5
+ constructor(startAddress?: AddressStartConfig);
6
+ /**
7
+ * 重置地址分配游标。
8
+ * startAddress 使用 byte 偏移作为起点,不是 WORD 序号。
9
+ */
10
+ reset(startAddress?: AddressStartConfig): void;
11
+ /**
12
+ * 在指定 I/Q 区按 byte 长度推进游标,并返回本次分配的起始 byte 偏移。
13
+ */
14
+ advance(family: MemoryFamily, byteLength: number, alignment?: number): number;
15
+ /**
16
+ * 根据绝对 byte 偏移换算 WORD 序号。
17
+ */
18
+ getWordElementIndex(family: MemoryFamily, byteOffset: number): number;
19
+ /**
20
+ * BYTE 地址直接使用绝对 byte 偏移。
21
+ */
22
+ getByteElementIndex(byteOffset: number): number;
23
+ /**
24
+ * 返回当前地址布局信息。
25
+ * start/end/byteLength 都以 byte 偏移表示。
26
+ */
27
+ getLayoutInfo(): IoMappingLayoutInfo;
28
+ private alignOffset;
29
+ }
30
+ export { IoMappingAddressAllocator };
@@ -1,4 +1,5 @@
1
1
  declare class ConfigParser {
2
+ static processData(data: any[]): any[];
2
3
  static getDefaultConfig(data: any): {
3
4
  baseInfo: any;
4
5
  config: any;
@@ -113,7 +113,15 @@ declare const _default: {
113
113
  },
114
114
  "dataType": "string",
115
115
  "componentType": "select",
116
- "defaultValue": "-1"
116
+ "defaultValue": "-1",
117
+ "options": [
118
+ {
119
+ "label": {
120
+ "i18nKey": "defaultTask"
121
+ },
122
+ "value": "-1"
123
+ }
124
+ ]
117
125
  }
118
126
  ]
119
127
  }
@@ -1,29 +1,7 @@
1
- import { ProtocolItem } from '../collection';
2
- declare class EthernetProtocolItem extends ProtocolItem {
3
- type: string;
4
- moduleType: number;
5
- baseInfo: any;
6
- config: any;
7
- tab: any;
8
- constructor(data: any);
9
- static fromPlain(data: any): EthernetProtocolItem;
10
- }
11
- declare class ModbusTCPServerProtocolItem extends ProtocolItem {
12
- type: string;
13
- moduleType: number;
14
- constructor(data: any);
15
- static fromPlain(data: any): ModbusTCPServerProtocolItem;
16
- }
17
- declare class ModbusTCPClientProtocolItem extends ProtocolItem {
18
- type: string;
19
- moduleType: number;
20
- constructor(data: any);
21
- static fromPlain(data: any): ModbusTCPClientProtocolItem;
22
- }
23
- declare class ModbusTCPSlaveDeviceProtocolItem extends ProtocolItem {
24
- type: string;
25
- moduleType: number;
26
- constructor(data: any);
27
- static fromPlain(data: any): ModbusTCPSlaveDeviceProtocolItem;
28
- }
29
- export { EthernetProtocolItem, ModbusTCPServerProtocolItem, ModbusTCPClientProtocolItem, ModbusTCPSlaveDeviceProtocolItem };
1
+ export * from './types';
2
+ export * from './ioMapping';
3
+ export * from './addressAllocator';
4
+ export * from './EthernetProtocolItem';
5
+ export * from './ModbusTCPServerProtocolItem';
6
+ export * from './ModbusTCPClientProtocolItem';
7
+ export * from './ModbusTCPSlaveDeviceProtocolItem';
@@ -0,0 +1,33 @@
1
+ import { AddressCursorState, AddressStartConfig, IoMappingNode, MemoryFamily } from './types';
2
+ export declare const getElementType: (type: string) => "WORD" | "BYTE" | null;
3
+ export declare const getMemoryFamily: (prefix: string) => MemoryFamily;
4
+ export declare const getBitPrefix: (family: MemoryFamily) => "%QX" | "%IX";
5
+ export declare const getElementPrefix: (family: MemoryFamily, elementType: "WORD" | "BYTE") => "%QW" | "%IW" | "%QB" | "%IB";
6
+ export declare const normalizeStartConfig: (startAddress?: AddressStartConfig) => AddressCursorState;
7
+ export declare const cloneCursorState: (state: AddressCursorState) => AddressCursorState;
8
+ export declare const formatFinalBitAddress: (family: MemoryFamily, endByteOffset: number, startByteOffset: number) => string | null;
9
+ export declare const createBitChildren: (parent: IoMappingNode, bitCount: number) => {
10
+ id: string;
11
+ name: string;
12
+ type: string;
13
+ channel: string;
14
+ address: string;
15
+ prefix: string;
16
+ length: number;
17
+ __byteOffset: number;
18
+ __elementIndex: number;
19
+ }[];
20
+ export declare const createElementChildren: (parent: IoMappingNode) => IoMappingNode[];
21
+ export declare const hasIoTreeChildren: (node: IoMappingNode) => boolean;
22
+ export declare const getIoTreeChildren: (node: IoMappingNode) => IoMappingNode[] | {
23
+ id: string;
24
+ name: string;
25
+ type: string;
26
+ channel: string;
27
+ address: string;
28
+ prefix: string;
29
+ length: number;
30
+ __byteOffset: number;
31
+ __elementIndex: number;
32
+ }[];
33
+ export declare const buildIoTree: (row: Omit<IoMappingNode, "children">) => IoMappingNode;
@@ -0,0 +1,112 @@
1
+ declare const _default: {
2
+ "type": "ModbusTCPClient",
3
+ "baseInfo": [
4
+ {
5
+ "key": "name",
6
+ "name": {
7
+ "i18nKey": "name"
8
+ },
9
+ "defaultValue": "ModbusTCPClient"
10
+ },
11
+ {
12
+ "key": "supplier",
13
+ "name": {
14
+ "i18nKey": "supplier"
15
+ },
16
+ "defaultValue": {
17
+ "i18nKey": "company"
18
+ }
19
+ },
20
+ {
21
+ "key": "version",
22
+ "name": {
23
+ "i18nKey": "verison"
24
+ },
25
+ "defaultValue": "1.0.0.0"
26
+ },
27
+ {
28
+ "key": "description",
29
+ "name": {
30
+ "i18nKey": "description"
31
+ },
32
+ "defaultValue": {
33
+ "i18nKey": "descriptionMap.modbusTcpClient"
34
+ }
35
+ },
36
+ {
37
+ "key": "category",
38
+ "name": {
39
+ "i18nKey": "category"
40
+ },
41
+ "defaultValue": {
42
+ "i18nKey": "modbusTcpClient"
43
+ }
44
+ }
45
+ ],
46
+ "tab": [
47
+ {
48
+ "name": {
49
+ "i18nKey": "general"
50
+ },
51
+ "key": "general"
52
+ },
53
+ {
54
+ "name": {
55
+ "i18nKey": "modbusSlaveChannel"
56
+ },
57
+ "key": "modbusSlaveChannel"
58
+ },
59
+ {
60
+ "name": {
61
+ "i18nKey": "ioMapping"
62
+ },
63
+ "key": "ioMapping"
64
+ },
65
+ {
66
+ "name": {
67
+ "i18nKey": "status"
68
+ },
69
+ "key": "status"
70
+ }
71
+ ],
72
+ "configuration": {
73
+ "general": [
74
+ {
75
+ "key": "slaveIpAddress",
76
+ "name": {
77
+ "i18nKey": "slaveIpAddress"
78
+ },
79
+ "dataType": "string",
80
+ "componentType": "ipInput",
81
+ "defaultValue": "192.168.0.1"
82
+ },
83
+ {
84
+ "key": "port",
85
+ "name": {
86
+ "i18nKey": "port"
87
+ },
88
+ "dataType": "number",
89
+ "max": 65535,
90
+ "min": 0,
91
+ "componentType": "numInput",
92
+ "defaultValue": 502
93
+ },
94
+ {
95
+ "key": "responseTimeout",
96
+ "name": {
97
+ "i18nKey": "responseTimeout"
98
+ },
99
+ "dataType": "number",
100
+ "max": 4294967295,
101
+ "min": 0,
102
+ "componentType": "numInput",
103
+ "defaultValue": 1000
104
+ }
105
+ ],
106
+ "modbusSlaveChannel": [],
107
+ "ioMapping": [],
108
+ "status": []
109
+ }
110
+ };
111
+
112
+ export default _default;
@@ -0,0 +1,108 @@
1
+ declare const _default: {
2
+ "type": "ModbusTCPServer",
3
+ "baseInfo": [
4
+ {
5
+ "key": "name",
6
+ "name": {
7
+ "i18nKey": "name"
8
+ },
9
+ "defaultValue": "ModbusTCPServer"
10
+ },
11
+ {
12
+ "key": "supplier",
13
+ "name": {
14
+ "i18nKey": "supplier"
15
+ },
16
+ "defaultValue": {
17
+ "i18nKey": "company"
18
+ }
19
+ },
20
+ {
21
+ "key": "version",
22
+ "name": {
23
+ "i18nKey": "verison"
24
+ },
25
+ "defaultValue": "1.0.0.0"
26
+ },
27
+ {
28
+ "key": "description",
29
+ "name": {
30
+ "i18nKey": "description"
31
+ },
32
+ "defaultValue": {
33
+ "i18nKey": "descriptionMap.modbusTcpServer"
34
+ }
35
+ },
36
+ {
37
+ "key": "category",
38
+ "name": {
39
+ "i18nKey": "category"
40
+ },
41
+ "defaultValue": {
42
+ "i18nKey": "modbusTcpServer"
43
+ }
44
+ }
45
+ ],
46
+ "tab": [
47
+ {
48
+ "name": {
49
+ "i18nKey": "general"
50
+ },
51
+ "key": "general"
52
+ },
53
+ {
54
+ "name": {
55
+ "i18nKey": "ioMapping"
56
+ },
57
+ "key": "ioMapping"
58
+ }
59
+ ],
60
+ "configuration": {
61
+ "general": [
62
+ {
63
+ "key": "responseTimeout",
64
+ "name": {
65
+ "i18nKey": "responseTimeout"
66
+ },
67
+ "dataType": "number",
68
+ "max": 4294967295,
69
+ "min": 0,
70
+ "componentType": "numInput",
71
+ "defaultValue": 1000
72
+ },
73
+ {
74
+ "key": "socketTimeout",
75
+ "name": {
76
+ "i18nKey": "socketTimeout"
77
+ },
78
+ "dataType": "number",
79
+ "max": 4294967295,
80
+ "min": 0,
81
+ "componentType": "numInput",
82
+ "defaultValue": 10
83
+ },
84
+ {
85
+ "key": "reconnect",
86
+ "name": {
87
+ "i18nKey": "reconnect"
88
+ },
89
+ "dataType": "boolean",
90
+ "componentType": "switch",
91
+ "defaultValue": true
92
+ }
93
+ ],
94
+ "ioMapping": [
95
+ {
96
+ "key": "busCycleTask",
97
+ "name": {
98
+ "i18nKey": "busCycleTask"
99
+ },
100
+ "dataType": "string",
101
+ "componentType": "select",
102
+ "defaultValue": "-1"
103
+ }
104
+ ]
105
+ }
106
+ };
107
+
108
+ export default _default;