TheatreInfoBean.java
4.55 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
184
185
186
187
188
189
190
package com.cnlive.goldenline.model.home;
import java.io.Serializable;
/**
* Description:剧院信息
* Created on 2017/3/16
* Author : 萧
*/
public class TheatreInfoBean implements Serializable {
private int id;
private String createTime;
private String updateTime;
private int enabled;
private String theatreName;
private String theatreEname;
private String theatreDesc;
private String theatreImg;
private String theatreAddress;
private String theatrePhone;
private String theatreContacts;
private String theatreLog;
private String theatreLat;
private int state;
public TheatreInfoBean() {
}
public TheatreInfoBean(int id, String createTime, String updateTime, int enabled, String theatreName, String theatreEname, String theatreDesc, String theatreImg, String theatreAddress, String theatrePhone, String theatreContacts, String theatreLog, String theatreLat, int state) {
this.id = id;
this.createTime = createTime;
this.updateTime = updateTime;
this.enabled = enabled;
this.theatreName = theatreName;
this.theatreEname = theatreEname;
this.theatreDesc = theatreDesc;
this.theatreImg = theatreImg;
this.theatreAddress = theatreAddress;
this.theatrePhone = theatrePhone;
this.theatreContacts = theatreContacts;
this.theatreLog = theatreLog;
this.theatreLat = theatreLat;
this.state = state;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getCreateTime() {
return createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getUpdateTime() {
return updateTime;
}
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
public int getEnabled() {
return enabled;
}
public void setEnabled(int enabled) {
this.enabled = enabled;
}
public String getTheatreName() {
return theatreName;
}
public void setTheatreName(String theatreName) {
this.theatreName = theatreName;
}
public String getTheatreEname() {
return theatreEname;
}
public void setTheatreEname(String theatreEname) {
this.theatreEname = theatreEname;
}
public String getTheatreDesc() {
return theatreDesc;
}
public void setTheatreDesc(String theatreDesc) {
this.theatreDesc = theatreDesc;
}
public String getTheatreImg() {
return theatreImg;
}
public void setTheatreImg(String theatreImg) {
this.theatreImg = theatreImg;
}
public String getTheatreAddress() {
return theatreAddress;
}
public void setTheatreAddress(String theatreAddress) {
this.theatreAddress = theatreAddress;
}
public String getTheatrePhone() {
return theatrePhone;
}
public void setTheatrePhone(String theatrePhone) {
this.theatrePhone = theatrePhone;
}
public String getTheatreContacts() {
return theatreContacts;
}
public void setTheatreContacts(String theatreContacts) {
this.theatreContacts = theatreContacts;
}
public String getTheatreLog() {
return theatreLog;
}
public void setTheatreLog(String theatreLog) {
this.theatreLog = theatreLog;
}
public String getTheatreLat() {
return theatreLat;
}
public void setTheatreLat(String theatreLat) {
this.theatreLat = theatreLat;
}
public int getState() {
return state;
}
public void setState(int state) {
this.state = state;
}
@Override
public String toString() {
return "TheatreInfoBean{" +
"id=" + id +
", createTime='" + createTime + '\'' +
", updateTime='" + updateTime + '\'' +
", enabled=" + enabled +
", theatreName='" + theatreName + '\'' +
", theatreEname='" + theatreEname + '\'' +
", theatreDesc='" + theatreDesc + '\'' +
", theatreImg='" + theatreImg + '\'' +
", theatreAddress='" + theatreAddress + '\'' +
", theatrePhone='" + theatrePhone + '\'' +
", theatreContacts='" + theatreContacts + '\'' +
", theatreLog='" + theatreLog + '\'' +
", theatreLat='" + theatreLat + '\'' +
", state=" + state +
'}';
}
}