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