自动化立体仓库 - WMS系统
#
LSH
2023-10-25 b69791c7b86d65728a074bd79932bfa9a017f081
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.properties;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * Created by vincent on 2023/10/25
 */
@Data
@Configuration
@ConfigurationProperties(prefix = "wms-parameter")
public class SlaveWmsParameterProperties {
 
    // 自动补空板功能开关
    private boolean automaticFillingBoardStaNosBoolean;
    // 自动移库功能开关
    private boolean autoLocMoveBoolean;
    // 自动移库功能开关 111
    private boolean autoLocMoveUnilateralBoolean;
    // 自动补空板站点
    private List<Integer> automaticFillingBoardStaNos = new ArrayList<>();
 
}