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
package com.yeshi.fanli.entity.integral;
 
import java.io.Serializable;
import java.util.Date;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
/**
 * 积分兑换记录
 * 
 * @author Administrator
 *
 */
@Table("yeshi_ec_integral_exchange_record")
public class IntegralExchangeRecord implements Serializable {
    
    private static final long serialVersionUID = 1L;
 
    @Column(name = "er_id")
    private Long id;
 
    @Column(name = "er_uid")
    private Long uid;
 
    @Column(name = "er_exchange_id")
    private Long exchangeId;
 
    @Column(name = "er_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 Long getExchangeId() {
        return exchangeId;
    }
 
    public void setExchangeId(Long exchangeId) {
        this.exchangeId = exchangeId;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
}