package com.yeshi.fanli.vo.money;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.fanli.entity.money.UserMoneyDetail;
|
|
public class UserMoneyDetailHistoryVO {
|
@Expose
|
private UserMonthMoneyVO month;
|
@Expose
|
private UserMoneyDetail detail;
|
|
public UserMonthMoneyVO getMonth() {
|
return month;
|
}
|
|
public void setMonth(UserMonthMoneyVO month) {
|
this.month = month;
|
}
|
|
public UserMoneyDetail getDetail() {
|
return detail;
|
}
|
|
public void setDetail(UserMoneyDetail detail) {
|
this.detail = detail;
|
}
|
}
|