郑永安
2023-06-19 f65443d8abeaedc9d102324565e8368e7c9d90c8
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
package com.gk.firework.Domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
import java.io.Serializable;
import java.util.Date;
 
@TableName("smslog")
public class SmsLogInfo implements Serializable {
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
 
    @TableId(type = IdType.AUTO)
    /** id  id **/
    private Long id;
 
    /** 手机号  mobile **/
    private String mobile;
 
    /** 发送时间  sendtime **/
    private Date sendtime;
 
    /** 发送次数  times **/
    private Integer times;
 
    /**时间类型 1小时 2天**/
    private Byte type;
 
    /**   id  id   **/
    public Long getId() {
        return id;
    }
 
    /**   id  id   **/
    public void setId(Long id) {
        this.id = id;
    }
 
    /**   手机号  mobile   **/
    public String getMobile() {
        return mobile;
    }
 
    /**   手机号  mobile   **/
    public void setMobile(String mobile) {
        this.mobile = mobile == null ? null : mobile.trim();
    }
 
    /**   发送时间  sendtime   **/
    public Date getSendtime() {
        return sendtime;
    }
 
    /**   发送时间  sendtime   **/
    public void setSendtime(Date sendtime) {
        this.sendtime = sendtime;
    }
 
    /**   发送次数  times   **/
    public Integer getTimes() {
        return times;
    }
 
    /**   发送次数  times   **/
    public void setTimes(Integer times) {
        this.times = times;
    }
 
    public Byte getType() {
        return type;
    }
 
    public void setType(Byte type) {
        this.type = type;
    }
}