admin
2019-02-22 e358583d644fa39fc1e93b14b3cafff3644980e4
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
package org.fanli.facade.system.entity.common;
 
 
import java.util.Date;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
/**
 * 短信验证码发送历史记录
 * 
 * @author Administrator
 *
 */
@Table("yeshi_ec_sms_history")
public class SMSHistory {
 
    public final static int TYPE_LOGIN = 1;// 登录
    public final static int TYPE_BIND = 2;// 绑定
    public final static int TYPE_EXTRACT = 3;// 提现
 
    @Column(name = "sh_id")
    private Long id;
    @Column(name = "sh_type")
    private Integer type;
    @Column(name = "sh_phone")
    private String phone;
    @Column(name = "sh_content")
    private String content;
    @Column(name = "sh_createtime")
    private Date createTime;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public String getPhone() {
        return phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
}