admin
2021-07-06 abce02c7a61820f5d580f87364d542e817be429c
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.tejia.lijin.app.entity.hongbao;
 
import com.google.gson.annotations.Expose;
import com.tejia.lijin.app.entity.UserInfo;
 
import java.math.BigDecimal;
import java.util.Date;
 
public class LijinSendInfo {
 
    private String id;
    private String name;
    private UserInfo user;
    private BigDecimal money;
    private Long expireTime;
    private String md5;
    private String notifyTitle;
    private String notifySubtitle;
 
    public String getNotifyTitle() {
        return notifyTitle;
    }
 
    public void setNotifyTitle(String notifyTitle) {
        this.notifyTitle = notifyTitle;
    }
 
    public String getNotifySubtitle() {
        return notifySubtitle;
    }
 
    public void setNotifySubtitle(String notifySubtitle) {
        this.notifySubtitle = notifySubtitle;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public UserInfo getUser() {
        return user;
    }
 
    public void setUser(UserInfo user) {
        this.user = user;
    }
 
    public BigDecimal getMoney() {
        return money;
    }
 
    public void setMoney(BigDecimal money) {
        this.money = money;
    }
 
    public Long getExpireTime() {
        return expireTime;
    }
 
    public void setExpireTime(Long expireTime) {
        this.expireTime = expireTime;
    }
 
    public String getMd5() {
        return md5;
    }
 
    public void setMd5(String md5) {
        this.md5 = md5;
    }
}