自动化立体仓库 - WCS系统
#
luxiaotao1123
2020-08-05 7bb6bff9506d1b0153b814e45f622c4f8538f67c
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,
}