1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
| {
| "logics": [
| {
| "name":"请求逻辑",
| "sequence":"1",
| "connectType":"Http",
| "connectAddress": "http://localhost:8082/account/testApi",
| "logic":[
| {
| "codeId": "plcRequest",
| "address": "MB.4x0001",
| "value": [1],
| "plcDataType": "int",
| "length": 2
| },
| {
| "codeId": "mesSend",
| "address": "MB.4x0010",
| "value": [0],
| "plcDataType": "int",
| "length": 2
| }
| ],
| "returnValue": [
| {
| "codeId": "mesSend",
| "address": "MB.4x0010",
| "fixed": true,
| "value": 1,
| "plcDataType": "int",
| "length": 2
| },
| {
| "codeId": "width",
| "address": "MB.4x0011",
| "fixed": false,
| "value": 1,
| "plcDataType": "int",
| "length": 2
| }
| ,
| {
| "codeId": "height",
| "address": "MB.4x0012",
| "fixed": false,
| "value": 2,
| "plcDataType": "int",
| "length": 2
| }
| ]
| },
| {
| "name":"完成逻辑",
| "sequence":"2",
| "connectType":"Procedure",
| "connectAddress": "存储过程名称",
| "logic":[
| {
| "codeId": "plcComplete",
| "address": "MB.0x0000",
| "value": [1],
| "plcDataType": "int",
| "length": 2
| },
| {
| "codeId": "mesComplete",
| "address": "MB.0x0010",
| "value": [0],
| "plcDataType": "int",
| "length": 2
| }
| ],
| "returnValue": [
| {
| "codeId": "mesComplete",
| "address": "MB.0x0010",
| "fixed": true,
| "value": 1,
| "plcDataType": "int",
| "length": 2
| }
| ]
| }
| ]
| }
|
|