package com.moon.server.entity.shujian; import java.io.Serializable; /** * 数简.渐变颜色表实体类 * * @author WWW * @date 2023-08-31 */ @SuppressWarnings("AlibabaLowerCamelCaseVariableNaming") public class GradientColorTableEntity implements Serializable { private static final long serialVersionUID = 3436664443231697504L; private Double r_start; private Double g_start; private Double b_start; private Double r_end; private Double g_end; private Double b_end; private Double low; private Double high; public GradientColorTableEntity() { } public Double getR_start() { return r_start; } public void setR_start(Double r_start) { this.r_start = r_start; } public Double getG_start() { return g_start; } public void setG_start(Double g_start) { this.g_start = g_start; } public Double getB_start() { return b_start; } public void setB_start(Double b_start) { this.b_start = b_start; } public Double getR_end() { return r_end; } public void setR_end(Double r_end) { this.r_end = r_end; } public Double getG_end() { return g_end; } public void setG_end(Double g_end) { this.g_end = g_end; } public Double getB_end() { return b_end; } public void setB_end(Double b_end) { this.b_end = b_end; } 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; } }