yj
2020-03-06 207dc8655711cddac2653e18b51e58a88dba2084
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package com.yeshi.fanli.entity.integral;
 
import java.util.Date;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
import com.google.gson.annotations.Expose;
 
/**
 *   积分明细
 * 
 * @author Administrator
 *
 */
@Table("yeshi_ec_integral_detail")
public class IntegralDetail {
    
    @Expose
    @Column(name = "td_id")
    private Long id; 
 
    @Column(name = "td_uid")
    private Long uid; // 用户id
 
    @Expose
    @Column(name = "td_money")
    private Integer money; // 积分
 
    @Expose
    @Column(name = "td_title")
    private String title; // 标题
 
    @Expose
    @Column(name = "td_desc_info")
    private String descInfo; // 详细信息
    
    @Expose
    @Column(name = "td_remark")
    private String remark; // 备注
    
    @Expose
    @Column(name = "td_unique_key")
    private String uniqueKey; // 唯一值
 
    @Expose
    @Column(name = "td_create_time")
    private Date createTime;
    
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public Integer getMoney() {
        return money;
    }
 
    public void setMoney(Integer money) {
        this.money = money;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getDescInfo() {
        return descInfo;
    }
 
    public void setDescInfo(String descInfo) {
        this.descInfo = descInfo;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getUniqueKey() {
        return uniqueKey;
    }
 
    public void setUniqueKey(String uniqueKey) {
        this.uniqueKey = uniqueKey;
    }
    
}