ShySites.java
3.35 KB
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
package com.cnlive.shenhe.entity;
import java.util.Date;
import javax.persistence.*;
@Table(name = "shy_sites")
public class ShySites {
@Id
private Integer id;
/**
* 站点名称
*/
private String name;
/**
* 单位名称
*/
private String company;
private Date created_at;
private Date updated_at;
private Integer spid;
private String appid;
/**
* 免审业务,多种用,分割
*/
private String write_business;
@Transient
private String write_business_name;
/**
* @return id
*/
public Integer getId() {
return id;
}
/**
* @param id
*/
public void setId(Integer id) {
this.id = id;
}
/**
* 获取站点名称
*
* @return name - 站点名称
*/
public String getName() {
return name;
}
/**
* 设置站点名称
*
* @param name 站点名称
*/
public void setName(String name) {
this.name = name;
}
/**
* 获取单位名称
*
* @return company - 单位名称
*/
public String getCompany() {
return company;
}
/**
* 设置单位名称
*
* @param company 单位名称
*/
public void setCompany(String company) {
this.company = company;
}
/**
* @return created_at
*/
public Date getCreated_at() {
return created_at;
}
/**
* @param created_at
*/
public void setCreated_at(Date created_at) {
this.created_at = created_at;
}
/**
* @return updated_at
*/
public Date getUpdated_at() {
return updated_at;
}
/**
* @param updated_at
*/
public void setUpdated_at(Date updated_at) {
this.updated_at = updated_at;
}
/**
* @return spid
*/
public Integer getSpid() {
return spid;
}
/**
* @param spid
*/
public void setSpid(Integer spid) {
this.spid = spid;
}
/**
* @return appid
*/
public String getAppid() {
return appid;
}
/**
* @param appid
*/
public void setAppid(String appid) {
this.appid = appid;
}
/**
* 获取免审业务,多种用,分割
*
* @return write_business - 免审业务,多种用,分割
*/
public String getWrite_business() {
return write_business;
}
/**
* 设置免审业务,多种用,分割
*
* @param write_business 免审业务,多种用,分割
*/
public void setWrite_business(String write_business) {
this.write_business = write_business;
}
public String getWrite_business_name() {
return write_business_name;
}
public void setWrite_business_name(String write_business_name) {
this.write_business_name = write_business_name;
}
@Override
public String toString() {
return "ShySites{" +
"id=" + id +
", name='" + name + '\'' +
", company='" + company + '\'' +
", created_at=" + created_at +
", updated_at=" + updated_at +
", spid=" + spid +
", appid='" + appid + '\'' +
", write_business='" + write_business + '\'' +
", write_business_name='" + write_business_name + '\'' +
'}';
}
}