admin
2020-05-19 744594ef1a2f530fc3e86ea9dc48b62247f79420
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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;
    }
}