package com.qianwen.mdc.collect.entity.iotdb;
|
|
import java.sql.Timestamp;
|
|
public class ProcessParam {
|
/**
|
* 时间戳
|
*/
|
private Long time;
|
|
/**
|
* 工位id
|
*/
|
private Long workstationId;
|
/**
|
* 数据名称,如Output,DeviceStatus等
|
*/
|
private String n;
|
/**
|
* 数据的值
|
*/
|
private String v;
|
|
|
public ProcessParam() {
|
}
|
public ProcessParam(Long time, Long workstationId, String n, String v) {
|
super();
|
this.time = time;
|
this.workstationId = workstationId;
|
this.n = n;
|
this.v = v;
|
}
|
|
public Long getTime() {
|
return time;
|
}
|
public void setTime(Long time) {
|
this.time = time;
|
}
|
public Long getWorkstationId() {
|
return workstationId;
|
}
|
public void setWorkstationId(Long workstationId) {
|
this.workstationId = workstationId;
|
}
|
public String getN() {
|
return n;
|
}
|
public void setN(String n) {
|
this.n = n;
|
}
|
public String getV() {
|
return v;
|
}
|
public void setV(String v) {
|
this.v = v;
|
}
|
|
}
|