1
zhang
8 天以前 510a21954afdf40479bdf293568cc7979e6043ad
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<>();
}