package com.qianwen.smartman.modules.mdc.entity;
|
|
/**
|
* 工位最新参数
|
*/
|
public class LastProcessParam{
|
|
private long time;
|
/**
|
* 最后采集时间
|
*/
|
private long updateTime;
|
/**
|
* 工位id
|
*/
|
private long workstationId;
|
/**
|
* 参数集合,都是最新的值
|
*/
|
private String paramJson;
|
public long getTime() {
|
return time;
|
}
|
public void setTime(long time) {
|
this.time = time;
|
}
|
public long getUpdateTime() {
|
return updateTime;
|
}
|
public void setUpdateTime(long updateTime) {
|
this.updateTime = updateTime;
|
}
|
public long getWorkstationId() {
|
return workstationId;
|
}
|
public void setWorkstationId(long workstationId) {
|
this.workstationId = workstationId;
|
}
|
public String getParamJson() {
|
return paramJson;
|
}
|
public void setParamJson(String paramJson) {
|
this.paramJson = paramJson;
|
}
|
|
|
}
|