package com.qianwen.smartman.modules.smis.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
/**
|
* 工位采集数据点VO
|
*/
|
public class WorkstationDatapointsVO {
|
private static final long serialVersionUID = 1;
|
|
@ApiModelProperty("模板类型")
|
private Integer type;
|
|
@ApiModelProperty("点位表头(json数组)")
|
private String dpHead;
|
|
@ApiModelProperty("点位配置(json数组)")
|
private String dpConfig;
|
|
/**
|
* 工位id
|
*/
|
private long workstationId;
|
|
/**
|
* IOT平台appId
|
*/
|
private String appId;
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public String getDpConfig() {
|
return dpConfig;
|
}
|
|
public void setDpConfig(String dpConfig) {
|
this.dpConfig = dpConfig;
|
}
|
|
public long getWorkstationId() {
|
return workstationId;
|
}
|
|
public void setWorkstationId(long workstationId) {
|
this.workstationId = workstationId;
|
}
|
|
public String getDpHead() {
|
return dpHead;
|
}
|
|
public void setDpHead(String dpHead) {
|
this.dpHead = dpHead;
|
}
|
|
public String getAppId() {
|
return appId;
|
}
|
|
public void setAppId(String appId) {
|
this.appId = appId;
|
}
|
|
|
}
|