package com.moon.server.entity.shujian;
|
|
import java.io.Serializable;
|
|
@SuppressWarnings("ALL")
|
public class ColorTableEntity implements Serializable {
|
private static final long serialVersionUID = -7178280280689493423L;
|
|
private short r;
|
|
private short g;
|
|
private short b;
|
|
private double low;
|
|
private double high;
|
|
public ColorTableEntity() {
|
}
|
|
public short getR() {
|
return r;
|
}
|
|
public void setR(short r) {
|
this.r = r;
|
}
|
|
public short getG() {
|
return g;
|
}
|
|
public void setG(short g) {
|
this.g = g;
|
}
|
|
public short getB() {
|
return b;
|
}
|
|
public void setB(short b) {
|
this.b = b;
|
}
|
|
public double getLow() {
|
return low;
|
}
|
|
public void setLow(double low) {
|
this.low = low;
|
}
|
|
public double getHigh() {
|
return high;
|
}
|
|
public void setHigh(double high) {
|
this.high = high;
|
}
|
}
|