package com.tejia.lijin.app.entity.user.money.statistic;
|
|
import java.io.Serializable;
|
|
public class TeamMoneyVO implements Serializable {
|
private boolean exist;
|
private String link;
|
private String portrait;
|
private String total;
|
private String direct;
|
private String indirect;
|
private TeamMoneyDateVO today;
|
private TeamMoneyDateVO yesterday;
|
private TeamMoneyDateVO thisMonth;
|
private TeamMoneyDateVO lastMonth;
|
|
public boolean isExist() {
|
return exist;
|
}
|
|
public void setExist(boolean exist) {
|
this.exist = exist;
|
}
|
|
public String getLink() {
|
return link;
|
}
|
|
public void setLink(String link) {
|
this.link = link;
|
}
|
|
public String getPortrait() {
|
return portrait;
|
}
|
|
public void setPortrait(String portrait) {
|
this.portrait = portrait;
|
}
|
|
public String getTotal() {
|
return total;
|
}
|
|
public void setTotal(String total) {
|
this.total = total;
|
}
|
|
public String getDirect() {
|
return direct;
|
}
|
|
public void setDirect(String direct) {
|
this.direct = direct;
|
}
|
|
public String getIndirect() {
|
return indirect;
|
}
|
|
public void setIndirect(String indirect) {
|
this.indirect = indirect;
|
}
|
|
public TeamMoneyDateVO getToday() {
|
return today;
|
}
|
|
public void setToday(TeamMoneyDateVO today) {
|
this.today = today;
|
}
|
|
public TeamMoneyDateVO getYesterday() {
|
return yesterday;
|
}
|
|
public void setYesterday(TeamMoneyDateVO yesterday) {
|
this.yesterday = yesterday;
|
}
|
|
public TeamMoneyDateVO getThisMonth() {
|
return thisMonth;
|
}
|
|
public void setThisMonth(TeamMoneyDateVO thisMonth) {
|
this.thisMonth = thisMonth;
|
}
|
|
public TeamMoneyDateVO getLastMonth() {
|
return lastMonth;
|
}
|
|
public void setLastMonth(TeamMoneyDateVO lastMonth) {
|
this.lastMonth = lastMonth;
|
}
|
|
|
}
|