|
@@ -22,6 +22,7 @@ public class PtsMachine implements Serializable{
|
|
|
private Integer machineProcessState;//生成流程状态
|
|
|
private String machineSoftwareVersion;//软件版本
|
|
|
private String machineHardwareVersion;//硬件版本
|
|
|
+ private String machineNfcId;//nfcId(卡片ID)
|
|
|
private Date machineCreateTime;//创建时间
|
|
|
private Date machineUpdateTime;//修改时间
|
|
|
|
|
@@ -152,4 +153,12 @@ public class PtsMachine implements Serializable{
|
|
|
public void setMachineProduceType(Integer machineProduceType) {
|
|
|
this.machineProduceType = machineProduceType;
|
|
|
}
|
|
|
+
|
|
|
+ public String getMachineNfcId() {
|
|
|
+ return machineNfcId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMachineNfcId(String machineNfcId) {
|
|
|
+ this.machineNfcId = machineNfcId;
|
|
|
+ }
|
|
|
}
|