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
| package com.zy.common.HslCommunication.Profinet.Siemens;
|
| /**
| * 西门子的PLC类型,目前支持的访问类型
| */
| public enum SiemensPLCS {
|
| /**
| * 1200系列
| */
| S1200,
|
| /**
| * 300系列
| */
| S300,
|
| /**
| * 1500系列
| */
| S1500,
|
| /**
| * S200Smart系列
| */
| S200Smart,
| }
|
|