自动化立体仓库 - WMS系统
#1
dubin
2025-12-16 c809a08cd4746f8c1c33c9158df4e35a55f5bc6e
src/main/java/com/zy/common/properties/SlaveProperties.java
@@ -1,5 +1,6 @@
package com.zy.common.properties;
import com.zy.common.model.LocGroupOrder;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
@@ -15,14 +16,16 @@
@ConfigurationProperties(prefix = "wcs-slave")
public class SlaveProperties {
    private boolean doubleDeep;
    //private boolean doubleDeep;
    // 双深库位排号
    private List<Integer> doubleLocs = new ArrayList<>();
    //private List<Integer> doubleLocs = new ArrayList<>();
    // 左深库位排号
    private List<Integer> doubleLocsLeft = new ArrayList<>();
    //private List<Integer> doubleLocsLeft = new ArrayList<>();
    // 右深库位排号
    private List<Integer> doubleLocsRight = new ArrayList<>();
    //private List<Integer> doubleLocsRight = new ArrayList<>();
    private int groupCount;
    //private int groupCount;
    private List<LocGroupOrder> locGroupAscOrder;
}