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;
|
}
|
}
|