自动化立体仓库 - WCS系统
#
tqs
2023-02-17 23f50c066cce98a8bf9b0d80daf4ec70d6a582d4
src/main/java/com/zy/core/properties/SlaveProperties.java
@@ -1,10 +1,15 @@
package com.zy.core.properties;
import com.zy.core.Slave;
import com.zy.core.model.CrnSlave;
import com.zy.core.model.DevpSlave;
import com.zy.core.model.LedSlave;
import com.zy.core.model.SteSlave;
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 +20,26 @@
@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<>();
}