|
|
@@ -43,6 +43,27 @@ public class FinanceConditionInfo {
|
|
|
*/
|
|
|
private String fc_otharremark;
|
|
|
|
|
|
+ /**
|
|
|
+ * 截止时间,年月的拼接,字段名按UAS表来写,不是手误
|
|
|
+ */
|
|
|
+ private Integer yeatmonth;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 截止至XX年
|
|
|
+ */
|
|
|
+ private Integer year;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 截止至XX月
|
|
|
+ */
|
|
|
+ private Integer month;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 余额
|
|
|
+ */
|
|
|
+ private Long fc_arbalance;
|
|
|
+
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
|
@@ -99,6 +120,38 @@ public class FinanceConditionInfo {
|
|
|
this.fc_otharremark = fc_otharremark;
|
|
|
}
|
|
|
|
|
|
+ public Integer getYeatmonth() {
|
|
|
+ return yeatmonth;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setYeatmonth(Integer yeatmonth) {
|
|
|
+ this.yeatmonth = yeatmonth;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getYear() {
|
|
|
+ return year;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setYear(Integer year) {
|
|
|
+ this.year = year;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getMonth() {
|
|
|
+ return month;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMonth(Integer month) {
|
|
|
+ this.month = month;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getFc_arbalance() {
|
|
|
+ return fc_arbalance;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFc_arbalance(Long fc_arbalance) {
|
|
|
+ this.fc_arbalance = fc_arbalance;
|
|
|
+ }
|
|
|
+
|
|
|
public FinanceConditionInfo() {
|
|
|
|
|
|
}
|