📄 indexdata.java
字号:
package com.srit.gcz.bean;
import java.util.Date;
/**
* 指标数据
* @Company 国研科技
* @author 陈鹏昊
* @date 2009-3-24
* @version 1.0
* @since 1.0
*/
public class IndexData {
// 编号
private int id = -1;
// 指标编码
private int indexId = -1;
// 频度编码
private int frequencyId = -1;
// 统计属性编码
private int statId = -1;
// 指标数据时间
private String year = null;
// 频度对应1月,2月/第一季度,第二季度/上半年,下半年
private String frequencyAtt = null;
// 地区维度ID
private int areAid = -1;
// 指标值
private double indexValue = -1;
// 指标值开始时间
private Date starDate = null;
// 指标值结束时间
private Date endDate = null;
//=======非数据库中字段
// 数据形式,-1 库中无,0库中无需要新增,1库中有,2库中有且需要更新
private int dataArr = -1;
// 随机生成序列
private String uuid = null;
public String getUuid() {
return uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
public int getDataArr() {
return dataArr;
}
public void setDataArr(int dataArr) {
this.dataArr = dataArr;
}
public String getYear() {
return year;
}
public void setYear(String year) {
this.year = year;
}
public String getFrequencyAtt() {
return frequencyAtt;
}
public void setFrequencyAtt(String frequencyAtt) {
this.frequencyAtt = frequencyAtt;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getFrequencyId() {
return frequencyId;
}
public void setFrequencyId(int frequencyId) {
this.frequencyId = frequencyId;
}
public int getStatId() {
return statId;
}
public void setStatId(int statId) {
this.statId = statId;
}
public int getAreAid() {
return areAid;
}
public void setAreAid(int areAid) {
this.areAid = areAid;
}
public double getIndexValue() {
return indexValue;
}
public void setIndexValue(double indexValue) {
this.indexValue = indexValue;
}
public Date getEndDate() {
return endDate;
}
public void setEndDate(Date endDate) {
this.endDate = endDate;
}
public int getIndexId() {
return indexId;
}
public void setIndexId(int indexId) {
this.indexId = indexId;
}
public Date getStarDate() {
return starDate;
}
public void setStarDate(Date starDate) {
this.starDate = starDate;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -