package com.yeshi.fanli.vo.order;
|
|
public class CurrentBonusVO {
|
private String today; // 今日
|
private String yesterday; // 昨日
|
private String thisMonth; // 本月
|
private String lastMonth; // 上月
|
|
public String getToday() {
|
return today;
|
}
|
|
public void setToday(String today) {
|
this.today = today;
|
}
|
|
public String getYesterday() {
|
return yesterday;
|
}
|
|
public void setYesterday(String yesterday) {
|
this.yesterday = yesterday;
|
}
|
|
public String getThisMonth() {
|
return thisMonth;
|
}
|
|
public void setThisMonth(String thisMonth) {
|
this.thisMonth = thisMonth;
|
}
|
|
public String getLastMonth() {
|
return lastMonth;
|
}
|
|
public void setLastMonth(String lastMonth) {
|
this.lastMonth = lastMonth;
|
}
|
|
}
|