1
zhang
2026-01-07 1930fa774bec2a088cc2cdb83dbf359168c6798f
src/main/java/com/zy/core/properties/SlaveProperties.java
@@ -11,20 +11,26 @@
/**
 * Created by vincent on 2020/8/4
 *
 */
/**
 * 该类整个就是一个通过配置文件来实体化对象类
 */
@Data
@Configuration
@ConfigurationProperties(prefix = "wcs-slave")
public class SlaveProperties {
    private List<Slave> crn = new ArrayList<>();
    private boolean doubleDeep;
    private List<Integer> doubleLocs = new ArrayList<>();
    private int groupCount;
    private List<DevpSlave> devp = new ArrayList<>();
    private List<Slave> barcode = new ArrayList<>();
    private List<Slave> led = new ArrayList<>();
    private List<Slave> scale = new ArrayList<>();
}