package com.yeshi.fanli.vo.tlj;
|
|
import java.io.Serializable;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.fanli.entity.bus.tlj.UserTaoLiJinDetail;
|
|
public class TaoLiJinDetailVO implements Serializable{
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
@Expose
|
private TaoLiJinMonthVO month;
|
@Expose
|
private UserTaoLiJinDetail detail;
|
|
public TaoLiJinMonthVO getMonth() {
|
return month;
|
}
|
|
public void setMonth(TaoLiJinMonthVO month) {
|
this.month = month;
|
}
|
|
public UserTaoLiJinDetail getDetail() {
|
return detail;
|
}
|
|
public void setDetail(UserTaoLiJinDetail detail) {
|
this.detail = detail;
|
}
|
}
|