| | |
| | | import com.java110.dto.PageDto; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @ClassName FloorDto |
| | |
| | | public class MachineDto extends PageDto implements Serializable { |
| | | |
| | | public static final String MACHINE_TYPE_CAR = "9996"; |
| | | public static final String MACHINE_STATE_ON = "1200"; |
| | | public static final String MACHINE_STATE_OFF = "1300"; |
| | | |
| | | private String machineMac; |
| | | private String machineId; |
| | |
| | | private String locationObjName; |
| | | private String direction;//设备方向 |
| | | private String directionName; |
| | | |
| | | private List<MachineAttrDto> machineAttrs; |
| | | |
| | | |
| | | |
| | |
| | | public void setLocationType(String locationType) { |
| | | this.locationType = locationType; |
| | | } |
| | | |
| | | public List<MachineAttrDto> getMachineAttrs() { |
| | | return machineAttrs; |
| | | } |
| | | |
| | | public void setMachineAttrs(List<MachineAttrDto> machineAttrs) { |
| | | this.machineAttrs = machineAttrs; |
| | | } |
| | | } |