|
|
|
@ -20,9 +20,11 @@ public class BaseEquipmentDto extends BaseEntity {
|
|
|
|
|
/** 设备类型编码 */
|
|
|
|
|
@Excel(name = "设备类型编码")
|
|
|
|
|
private String equipmentCode;
|
|
|
|
|
private String nextMachineCode;
|
|
|
|
|
|
|
|
|
|
private String recordId;
|
|
|
|
|
private String rfidNo;
|
|
|
|
|
private String rfid;
|
|
|
|
|
|
|
|
|
|
/** 设备类型名称 */
|
|
|
|
|
@Excel(name = "设备类型名称")
|
|
|
|
@ -149,6 +151,22 @@ public class BaseEquipmentDto extends BaseEntity {
|
|
|
|
|
@Excel(name = "端口号")
|
|
|
|
|
private String plcPort;
|
|
|
|
|
|
|
|
|
|
public String getNextMachineCode() {
|
|
|
|
|
return nextMachineCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setNextMachineCode(String nextMachineCode) {
|
|
|
|
|
this.nextMachineCode = nextMachineCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getRfid() {
|
|
|
|
|
return rfid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setRfid(String rfid) {
|
|
|
|
|
this.rfid = rfid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getRfidNo() {
|
|
|
|
|
return rfidNo;
|
|
|
|
|
}
|
|
|
|
|