vincent
2020-06-04 fe78ade0acf1c83986fe0b5ffa92fd2ead09555c
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.gateway.core.domain.siemens;
 
/**
 * 西门子的PLC类型,目前支持的访问类型
 */
public enum SiemensPLCS {
 
    /**
     * 1200系列
     */
    S1200,
 
    /**
     * 300系列
     */
    S300,
 
    /**
     * 1500系列
     */
    S1500,
 
    /**
     * S200Smart系列
     */
    S200Smart,
}