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