package com.qianwen.smartman.modules.mdc.dto;
|
|
import java.io.Serializable;
|
/**
|
* 数据点,用于获取过程参数展示项
|
*/
|
public class DatapointDTO implements Serializable {
|
private static final long serialVersionUID = -27216320873573146L;
|
|
private String dpLabel;
|
private String dpName;
|
private Boolean isProcessParam;
|
/**
|
* 展示图表类型.”曲线图“(值line)和”分布图“(值distribute)
|
*/
|
private String paramChartType;
|
public String getDpLabel() {
|
return dpLabel;
|
}
|
public void setDpLabel(String dpLabel) {
|
this.dpLabel = dpLabel;
|
}
|
|
public String getDpName() {
|
return dpName;
|
}
|
public void setDpName(String dpName) {
|
this.dpName = dpName;
|
}
|
public String getParamChartType() {
|
return paramChartType;
|
}
|
public void setParamChartType(String paramChartType) {
|
this.paramChartType = paramChartType;
|
}
|
public Boolean getIsProcessParam() {
|
return isProcessParam;
|
}
|
public void setIsProcessParam(Boolean isProcessParam) {
|
this.isProcessParam = isProcessParam;
|
}
|
|
|
}
|