#
Junjie
2025-03-19 a4f7c8e0fad43d37c91c755e5e386c4a10fa5b8d
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,16 @@
@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<ShuttleSlave> shuttle = new ArrayList<>();
    private List<Slave> scale;
    private List<ForkLiftSlave> forkLift = new ArrayList<>();
    private List<ForkLiftSlave> forkLiftMaster = new ArrayList<>();
}