yangys
2025-11-18 8e944cfabb253fc2556588e308e282586043f7b0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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;
    }
    
    
}