月球大数据地理空间分析展示平台-【后端】-月球后台服务
13693261870
2023-09-02 e64b967ba5eba17e3b497fa35abc1aa39e7f07aa
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
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;
    }
}