TheatreInfoRequest.java
1.08 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
package com.cnlive.goldenline.model.request;
/**
* Description:请求剧院信息
* Created on 2017/4/1
* Author : 萧
*/
public class TheatreInfoRequest {
int type;
String showId;
String theatreId;
public TheatreInfoRequest() {
}
public TheatreInfoRequest(int type, String showId, String theatreId) {
this.type = type;
this.showId = showId;
this.theatreId = theatreId;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public String getShowId() {
return showId;
}
public void setShowId(String showId) {
this.showId = showId;
}
public String getTheatreId() {
return theatreId;
}
public void setTheatreId(String theatreId) {
this.theatreId = theatreId;
}
@Override
public String toString() {
return "TheatreInfoRequest{" +
"type=" + type +
", showId='" + showId + '\'' +
", theatreId='" + theatreId + '\'' +
'}';
}
}