HallBean.java
2.54 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
package com.cnlive.goldenline.model.subscribe;
/**
* description:
* Created by Sivin on 2017/4/9.
*/
public class HallBean {
/**
* id : null
* createTime : 2017-04-09 02:49:50
* updateTime : 2017-04-09 02:49:50
* enabled : 1
* theatreId : null
* liveId : 33
* hallId : 1
* hallName : 直播1厅
* hallDesc : 虚拟新增厅描述
* totalNumber : 500
* hallSort : 0
* hallStatus : 0
*/
private Object id;
private String createTime;
private String updateTime;
private int enabled;
private Object theatreId;
private int liveId;
private long hallId;
private String hallName;
private String hallDesc;
private int totalNumber;
private int hallSort;
private int hallStatus;
public Object getId() {
return id;
}
public void setId(Object 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 Object getTheatreId() {
return theatreId;
}
public void setTheatreId(Object theatreId) {
this.theatreId = theatreId;
}
public int getLiveId() {
return liveId;
}
public void setLiveId(int liveId) {
this.liveId = liveId;
}
public long getHallId() {
return hallId;
}
public void setHallId(long hallId) {
this.hallId = hallId;
}
public String getHallName() {
return hallName;
}
public void setHallName(String hallName) {
this.hallName = hallName;
}
public String getHallDesc() {
return hallDesc;
}
public void setHallDesc(String hallDesc) {
this.hallDesc = hallDesc;
}
public int getTotalNumber() {
return totalNumber;
}
public void setTotalNumber(int totalNumber) {
this.totalNumber = totalNumber;
}
public int getHallSort() {
return hallSort;
}
public void setHallSort(int hallSort) {
this.hallSort = hallSort;
}
public int getHallStatus() {
return hallStatus;
}
public void setHallStatus(int hallStatus) {
this.hallStatus = hallStatus;
}
}