| | |
| | | package com.zy.acs.conveyor.core.properties; |
| | | |
| | | import com.zy.acs.conveyor.core.Slave; |
| | | import lombok.Data; |
| | | import org.springframework.boot.context.properties.ConfigurationProperties; |
| | | import org.springframework.context.annotation.Configuration; |
| | |
| | | @ConfigurationProperties(prefix = "cv-slave") |
| | | public class SlaveProperties { |
| | | |
| | | private boolean doubleDeep; |
| | | |
| | | private List<Integer> doubleLocs = new ArrayList<>(); |
| | | |
| | | private int groupCount; |
| | | |
| | | private List<DevpSlave> devp = new ArrayList<>(); |
| | | |
| | | private List<Slave> barcode = new ArrayList<>(); |
| | | |
| | | |
| | | } |