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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
package cn.flightfeather.supervision.domain.ds1.entity;
 
import com.fasterxml.jackson.annotation.JsonInclude;
 
import javax.persistence.*;
 
@Table(name = "sm_t_score")
public class Score {
    @Id
    @Column(name = "Id")
    private Integer id;
 
    @Column(name = "Scene_Id")
    private String sceneId;
 
    @Column(name = "Scene_Name")
    private String sceneName;
 
    @Column(name = "Year")
    private Integer year;
 
    @Column(name = "Month")
    private Integer month;
 
    @Column(name = "District_Code")
    private String districtCode;
 
    @Column(name = "District_Name")
    private String districtName;
 
    @Column(name = "Score")
    private Integer score;
 
    @Column(name = "Completion")
    private Boolean completion;
 
    /**
     * @return Id
     */
    public Integer getId() {
        return id;
    }
 
    /**
     * @param id
     */
    public void setId(Integer id) {
        this.id = id;
    }
 
    /**
     * @return Scene_Id
     */
    public String getSceneId() {
        return sceneId;
    }
 
    /**
     * @param sceneId
     */
    public void setSceneId(String sceneId) {
        this.sceneId = sceneId == null ? null : sceneId.trim();
    }
 
    /**
     * @return Scene_Name
     */
    public String getSceneName() {
        return sceneName;
    }
 
    /**
     * @param sceneName
     */
    public void setSceneName(String sceneName) {
        this.sceneName = sceneName == null ? null : sceneName.trim();
    }
 
    /**
     * @return Year
     */
    public Integer getYear() {
        return year;
    }
 
    /**
     * @param year
     */
    public void setYear(Integer year) {
        this.year = year;
    }
 
    /**
     * @return Month
     */
    public Integer getMonth() {
        return month;
    }
 
    /**
     * @param month
     */
    public void setMonth(Integer month) {
        this.month = month;
    }
 
    /**
     * @return District_Code
     */
    public String getDistrictCode() {
        return districtCode;
    }
 
    /**
     * @param districtCode
     */
    public void setDistrictCode(String districtCode) {
        this.districtCode = districtCode == null ? null : districtCode.trim();
    }
 
    /**
     * @return District_Name
     */
    public String getDistrictName() {
        return districtName;
    }
 
    /**
     * @param districtName
     */
    public void setDistrictName(String districtName) {
        this.districtName = districtName == null ? null : districtName.trim();
    }
 
    /**
     * @return Score
     */
    public Integer getScore() {
        return score;
    }
 
    /**
     * @param score
     */
    public void setScore(Integer score) {
        this.score = score;
    }
 
    public Boolean getCompletion() {
        return completion;
    }
 
    public void setCompletion(Boolean completion) {
        this.completion = completion;
    }
}