admin
2021-05-29 970e58a0ceb0bfcd52affad3f08c53d30c29ab8d
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
package com.ks.lijin.pojo.DO;
 
import org.springframework.format.annotation.DateTimeFormat;
import org.yeshi.utils.generater.mybatis.Column;
import org.yeshi.utils.generater.mybatis.Table;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
@Table("tlj_provider_link")
public class LiJinProviderLink implements Serializable {
    @Column(name = "lk_id")
    private Long id;
 
    @Column(name = "lk_provider_id")
    private Long providerId;
 
    @Column(name = "lk_link")
    private String link;
 
    @Column(name = "lk_money")
    private BigDecimal money;
 
    @Column(name = "lk_type")
    private String type;
 
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @Column(name = "lk_effect_time")
    private Date effectTime;
 
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @Column(name = "lk_expire_time")
    private Date expireTime;
 
    @Column(name = "lk_state")
    private Integer state;
 
    @Column(name = "lk_creator_id")
    private Long creatorId;
 
    @Column(name = "lk_create_time")
    private Date createTime;
 
    @Column(name = "lk_updator_id")
    private Long updatorId;
 
    @Column(name = "lk_update_time")
    private Date updateTime;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getProviderId() {
        return providerId;
    }
 
    public void setProviderId(Long providerId) {
        this.providerId = providerId;
    }
 
    public String getLink() {
        return link;
    }
 
    public void setLink(String link) {
        this.link = link;
    }
 
    public BigDecimal getMoney() {
        return money;
    }
 
    public void setMoney(BigDecimal money) {
        this.money = money;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public Date getEffectTime() {
        return effectTime;
    }
 
    public void setEffectTime(Date effectTime) {
        this.effectTime = effectTime;
    }
 
    public Date getExpireTime() {
        return expireTime;
    }
 
    public void setExpireTime(Date expireTime) {
        this.expireTime = expireTime;
    }
 
    public Integer getState() {
        return state;
    }
 
    public void setState(Integer state) {
        this.state = state;
    }
 
    public Long getCreatorId() {
        return creatorId;
    }
 
    public void setCreatorId(Long creatorId) {
        this.creatorId = creatorId;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Long getUpdatorId() {
        return updatorId;
    }
 
    public void setUpdatorId(Long updatorId) {
        this.updatorId = updatorId;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
}