package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
public class AccountMonth implements Serializable {
|
@Expose
|
private String year;//年份
|
@Expose
|
private String month;//月份
|
@Expose
|
private String expend;//支出
|
@Expose
|
private String income;//收入
|
|
public String getYear() {
|
return year;
|
}
|
|
public void setYear(String year) {
|
this.year = year;
|
}
|
|
public String getMonth() {
|
return month;
|
}
|
|
public void setMonth(String month) {
|
this.month = month;
|
}
|
|
public String getExpend() {
|
return expend;
|
}
|
|
public void setExpend(String expend) {
|
this.expend = expend;
|
}
|
|
public String getIncome() {
|
return income;
|
}
|
|
public void setIncome(String income) {
|
this.income = income;
|
}
|
}
|