lxw
2020-06-27 8aee9dfec05e1a9333abf03f1bd35dd7cfa9d352
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.fgkj.servlets;
 
import java.io.Serializable;
 
public class Title implements Serializable{
    Double min;
    Double max;
    Double avg;
    Double alow;
    Double clow;    
    Double lc;
    Double lp;
    public Double getMin() {
        return min;
    }
    public void setMin(Double min) {
        this.min = min;
    }
    public Double getMax() {
        return max;
    }
    public void setMax(Double max) {
        this.max = max;
    }
    public Double getAvg() {
        return avg;
    }
    public void setAvg(Double avg) {
        this.avg = avg;
    }
    public Double getAlow() {
        return alow;
    }
    public void setAlow(Double alow) {
        this.alow = alow;
    }
    public Double getClow() {
        return clow;
    }
    public void setClow(Double clow) {
        this.clow = clow;
    }
    public Double getLc() {
        return lc;
    }
    public void setLc(Double lc) {
        this.lc = lc;
    }
    public Double getLp() {
        return lp;
    }
    public void setLp(Double lp) {
        this.lp = lp;
    }
    @Override
    public String toString() {
        return "Title [min=" + min + ", max=" + max + ", avg=" + avg
                + ", alow=" + alow + ", clow=" + clow + ", lc=" + lc + ", lp="
                + lp + "]";
    }
    
    
}