#
luxiaotao1123
2020-06-19 3393a0cd1bd57f3b8085f52567ef2ab243dbea95
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,
}