Helius
2021-11-01 110a99baa82a748bee993ad01ca03370c9dc0cf2
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
package com.matrix.system.hive.bean;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @author helius
 */
public class SysSmsShopRecord implements Serializable {
    private static final long serialVersionUID = -6051565176679161808L;
 
    private Long id;
 
    private Long ssId;
 
    private int type;
 
    private Integer smsCnt;
 
    private Date createTime;
 
    private String createBy;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getSsId() {
        return ssId;
    }
 
    public void setSsId(Long ssId) {
        this.ssId = ssId;
    }
 
    public int getType() {
        return type;
    }
 
    public void setType(int type) {
        this.type = type;
    }
 
    public Integer getSmsCnt() {
        return smsCnt;
    }
 
    public void setSmsCnt(Integer smsCnt) {
        this.smsCnt = smsCnt;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getCreateBy() {
        return createBy;
    }
 
    public void setCreateBy(String createBy) {
        this.createBy = createBy;
    }
}