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 + "]";
|
}
|
|
|
}
|