SmsLog.java 2.43 KB
Newer Older
m1991's avatar
m1991 committed
1
package cn.wisenergy.model.app;
m1991's avatar
m1991 committed
2

m1991's avatar
m1991 committed
3 4
import java.util.Date;

m1991's avatar
m1991 committed
5 6 7 8 9
/**
 *   短信记录
 * Created by m1991 on 2021/2/28 22:56
 */
public class SmsLog {
m1991's avatar
m1991 committed
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
    //
    private Long id;
    //短信类型(0:注册、登录验证码,1:修改密码,2:订单状态通知信息)
    private Integer codeType;
    //接收短信手机号
    private String phone;
    //短信内容
    private String message;
    //失败原因
    private String failInfo;
    //状态(1:成功2:失败)
    private Integer status;
    //创建人
    private Long createdUserId;
    //修改人
    private Long updatedUserId;
    //创建时间
    private Date creatdTime;
    //修改时间
    private Date updatedTime;
    //是否删除(0:否,1:是)
    private Integer isDelete;
    //get set 方法
m1991's avatar
m1991 committed
33 34
    public Long getId() {
        return id;
m1991's avatar
m1991 committed
35
    }
m1991's avatar
m1991 committed
36 37 38

    public void setId(Long id) {
        this.id = id;
m1991's avatar
m1991 committed
39
    }
m1991's avatar
m1991 committed
40 41 42

    public Integer getCodeType() {
        return codeType;
m1991's avatar
m1991 committed
43
    }
m1991's avatar
m1991 committed
44 45 46

    public void setCodeType(Integer codeType) {
        this.codeType = codeType;
m1991's avatar
m1991 committed
47
    }
m1991's avatar
m1991 committed
48 49 50

    public String getPhone() {
        return phone;
m1991's avatar
m1991 committed
51
    }
m1991's avatar
m1991 committed
52 53 54

    public void setPhone(String phone) {
        this.phone = phone;
m1991's avatar
m1991 committed
55
    }
m1991's avatar
m1991 committed
56 57 58

    public String getMessage() {
        return message;
m1991's avatar
m1991 committed
59
    }
m1991's avatar
m1991 committed
60 61 62

    public void setMessage(String message) {
        this.message = message;
m1991's avatar
m1991 committed
63
    }
m1991's avatar
m1991 committed
64 65 66

    public String getFailInfo() {
        return failInfo;
m1991's avatar
m1991 committed
67
    }
m1991's avatar
m1991 committed
68 69 70

    public void setFailInfo(String failInfo) {
        this.failInfo = failInfo;
m1991's avatar
m1991 committed
71
    }
m1991's avatar
m1991 committed
72 73 74

    public Integer getStatus() {
        return status;
m1991's avatar
m1991 committed
75
    }
m1991's avatar
m1991 committed
76 77 78

    public void setStatus(Integer status) {
        this.status = status;
m1991's avatar
m1991 committed
79
    }
m1991's avatar
m1991 committed
80 81 82

    public Long getCreatedUserId() {
        return createdUserId;
m1991's avatar
m1991 committed
83
    }
m1991's avatar
m1991 committed
84 85 86

    public void setCreatedUserId(Long createdUserId) {
        this.createdUserId = createdUserId;
m1991's avatar
m1991 committed
87
    }
m1991's avatar
m1991 committed
88 89 90

    public Long getUpdatedUserId() {
        return updatedUserId;
m1991's avatar
m1991 committed
91
    }
m1991's avatar
m1991 committed
92 93 94

    public void setUpdatedUserId(Long updatedUserId) {
        this.updatedUserId = updatedUserId;
m1991's avatar
m1991 committed
95
    }
m1991's avatar
m1991 committed
96 97 98

    public Date getCreatdTime() {
        return creatdTime;
m1991's avatar
m1991 committed
99
    }
m1991's avatar
m1991 committed
100 101 102

    public void setCreatdTime(Date creatdTime) {
        this.creatdTime = creatdTime;
m1991's avatar
m1991 committed
103
    }
m1991's avatar
m1991 committed
104 105 106

    public Date getUpdatedTime() {
        return updatedTime;
m1991's avatar
m1991 committed
107
    }
m1991's avatar
m1991 committed
108 109 110

    public void setUpdatedTime(Date updatedTime) {
        this.updatedTime = updatedTime;
m1991's avatar
m1991 committed
111
    }
m1991's avatar
m1991 committed
112 113 114

    public Integer getIsDelete() {
        return isDelete;
m1991's avatar
m1991 committed
115
    }
m1991's avatar
m1991 committed
116 117 118

    public void setIsDelete(Integer isDelete) {
        this.isDelete = isDelete;
m1991's avatar
m1991 committed
119 120
    }
}