zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
package com.shlanbao.tzsc.pms.equ.effective.beans;
/**
 * 
* @ClassName: EffectiveGraphBean 
* @Description: 设备有效作业率 图形使用的实体类 
* @author luo
* @date 2015年3月10日 下午2:48:14 
*
 */
public class EffectiveGraphBean {
 
    private String[] xvalue;
    private String[] yvalueType;
    private double[][] yvalue;
    
    public String[] getYvalueType() {
        return yvalueType;
    }
    public void setYvalueType(String[] yvalueType) {
        this.yvalueType = yvalueType;
    }
    public String[] getXvalue() {
        return xvalue;
    }
    public void setXvalue(String[] xvalue) {
        this.xvalue = xvalue;
    }
    public double[][] getYvalue() {
        return yvalue;
    }
    public void setYvalue(double[][] yvalue) {
        this.yvalue = yvalue;
    }
    
}