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
package com.ks.lijin.pojo.DO;
 
import org.yeshi.utils.generater.mybatis.Column;
import org.yeshi.utils.generater.mybatis.Table;
 
import java.io.Serializable;
import java.util.Date;
 
@Table("tlj_provider_notice")
public class LiJinProviderNotice implements Serializable {
    @Column(name = "ne_id")
    private Long id;
 
    @Column(name = "ne_provider_id")
    private Long providerId;
 
    @Column(name = "ne_title")
    private String title;
 
    @Column(name = "ne_content")
    private String content;
 
    @Column(name = "ne_type")
    private String type;
 
    @Column(name = "ne_read")
    private Boolean read;
 
    @Column(name = "ne_state")
    private Integer state;
 
    @Column(name = "ne_creator_id")
    private Long creatorId;
 
    @Column(name = "ne_create_time")
    private Date createTime;
 
    @Column(name = "ne_updator_id")
    private Long updatorId;
 
    @Column(name = "ne_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 getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public Boolean getRead() {
        return read;
    }
 
    public void setRead(Boolean read) {
        this.read = read;
    }
 
    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;
    }
}