自动化立体仓库 - WCS系统
Junjie
2023-07-25 272da942cd65f09b62e74d983ae42a320c9609ee
src/main/java/com/zy/core/properties/SlaveProperties.java
@@ -1,10 +1,12 @@
package com.zy.core.properties;
import com.zy.core.Slave;
import com.zy.core.model.*;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
import java.util.ArrayList;
import java.util.List;
/**
@@ -15,14 +17,30 @@
@ConfigurationProperties(prefix = "wcs-slave")
public class SlaveProperties {
    private List<Slave> crn;
    private boolean doubleDeep;
    private List<Slave> devp;
    private List<Integer> doubleLocs = new ArrayList<>();
    private List<Slave> barcode;
    private int groupCount;
    private List<Slave> led;
    private List<String> channel = new ArrayList<>();
    private List<Slave> scale;
    private List<CrnSlave> crn = new ArrayList<>();
    private List<SteSlave> ste = new ArrayList<>();
    private List<DevpSlave> devp = new ArrayList<>();
    private List<Slave> barcode = new ArrayList<>();
    private List<LedSlave> led = new ArrayList<>();
    private List<Slave> scale = new ArrayList<>();
    private List<Slave> car = new ArrayList<>();
    private List<ShuttleSlave> shuttle = new ArrayList<>();
    private List<LiftSlave> lift = new ArrayList<>();
}