admin
2019-08-19 616608ec1005bff373bc380ecc3bf02a1063497c
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.yeshi.fanli.dto.msg;
 
/**
 * 其他消息里面的淘礼金相关的内容
 * 
 * @author Administrator
 *
 */
public class MsgOtherGiveContentDTO {
    
    // 券
    public final static String TYEP_COUPON = "coupon";
    // 红包
    public final static String TYEP_TLJ = "taolijin";
    
    private String type;  //赠送类别   券: coupon;  推广红包: taoLiJin
    private String title;  // 标题
    private String giveType;  //赠送类别
    private String receiveInfo; // 领取人信息
    private String giveTime; // 赠送时间
    private String receiveTime;// 领取时间
    
    
    public String getGiveType() {
        return giveType;
    }
    public void setGiveType(String giveType) {
        this.giveType = giveType;
    }
    public String getReceiveInfo() {
        return receiveInfo;
    }
    public void setReceiveInfo(String receiveInfo) {
        this.receiveInfo = receiveInfo;
    }
    public String getGiveTime() {
        return giveTime;
    }
    public void setGiveTime(String giveTime) {
        this.giveTime = giveTime;
    }
    public String getReceiveTime() {
        return receiveTime;
    }
    public void setReceiveTime(String receiveTime) {
        this.receiveTime = receiveTime;
    }
    
    public String getType() {
        return type;
    }
    public void setType(String type) {
        this.type = type;
    }
    public String getTitle() {
        return title;
    }
    public void setTitle(String title) {
        this.title = title;
    }
}