TicketItem.java
4.74 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
package com.cnlive.goldenline.model.mine;
import com.cnlive.goldenline.model.response.bean.LiveShowBean;
/**
* Created by gujun on 2017/4/8.
*/
public class TicketItem {
private String createTime;
private int isOrdered;
private String liveShowCategory;
private String liveShowCategoryId;
private String liveShowChatRoomId;
private String liveShowCover;
private String liveShowDes;
private String liveShowEndTime;
private String liveShowId;
private String liveShowOnLinePeople;
private String liveShowPrevueId;
private String liveShowPrice;
private String liveShowShareUrl;
private String liveShowStartTime;
private String liveShowVideoId;
private String liveShowthumbnailImg;
private String liveShowtitle;
private int liveState;
private String theatreSeat;
public String getCreateTime() {
return createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public int getIsOrdered() {
return isOrdered;
}
public void setIsOrdered(int isOrdered) {
this.isOrdered = isOrdered;
}
public String getLiveShowCategory() {
return liveShowCategory;
}
public void setLiveShowCategory(String liveShowCategory) {
this.liveShowCategory = liveShowCategory;
}
public String getLiveShowCategoryId() {
return liveShowCategoryId;
}
public void setLiveShowCategoryId(String liveShowCategoryId) {
this.liveShowCategoryId = liveShowCategoryId;
}
public String getLiveShowChatRoomId() {
return liveShowChatRoomId;
}
public void setLiveShowChatRoomId(String liveShowChatRoomId) {
this.liveShowChatRoomId = liveShowChatRoomId;
}
public String getLiveShowCover() {
return liveShowCover;
}
public void setLiveShowCover(String liveShowCover) {
this.liveShowCover = liveShowCover;
}
public String getLiveShowDes() {
return liveShowDes;
}
public void setLiveShowDes(String liveShowDes) {
this.liveShowDes = liveShowDes;
}
public String getLiveShowEndTime() {
return liveShowEndTime;
}
public void setLiveShowEndTime(String liveShowEndTime) {
this.liveShowEndTime = liveShowEndTime;
}
public String getLiveShowId() {
return liveShowId;
}
public void setLiveShowId(String liveShowId) {
this.liveShowId = liveShowId;
}
public String getLiveShowOnLinePeople() {
return liveShowOnLinePeople;
}
public void setLiveShowOnLinePeople(String liveShowOnLinePeople) {
this.liveShowOnLinePeople = liveShowOnLinePeople;
}
public String getLiveShowPrevueId() {
return liveShowPrevueId;
}
public void setLiveShowPrevueId(String liveShowPrevueId) {
this.liveShowPrevueId = liveShowPrevueId;
}
public String getLiveShowPrice() {
return liveShowPrice;
}
public void setLiveShowPrice(String liveShowPrice) {
this.liveShowPrice = liveShowPrice;
}
public String getLiveShowShareUrl() {
return liveShowShareUrl;
}
public void setLiveShowShareUrl(String liveShowShareUrl) {
this.liveShowShareUrl = liveShowShareUrl;
}
public String getLiveShowStartTime() {
return liveShowStartTime;
}
public void setLiveShowStartTime(String liveShowStartTime) {
this.liveShowStartTime = liveShowStartTime;
}
public String getLiveShowVideoId() {
return liveShowVideoId;
}
public void setLiveShowVideoId(String liveShowVideoId) {
this.liveShowVideoId = liveShowVideoId;
}
public String getLiveShowthumbnailImg() {
return liveShowthumbnailImg;
}
public void setLiveShowthumbnailImg(String liveShowthumbnailImg) {
this.liveShowthumbnailImg = liveShowthumbnailImg;
}
public String getLiveShowtitle() {
return liveShowtitle;
}
public void setLiveShowtitle(String liveShowtitle) {
this.liveShowtitle = liveShowtitle;
}
public int getLiveState() {
return liveState;
}
public void setLiveState(int liveState) {
this.liveState = liveState;
}
public String getTheatreSeat() {
return theatreSeat;
}
public void setTheatreSeat(String theatreSeat) {
this.theatreSeat = theatreSeat;
}
public LiveShowBean toLiveShowBean() {
return new LiveShowBean(liveShowCover, liveShowthumbnailImg, liveShowtitle, liveShowDes, liveShowPrice, liveShowStartTime, liveShowEndTime, liveShowCategoryId, liveShowCategory, liveShowOnLinePeople, liveShowId, liveShowVideoId, liveShowPrevueId, liveShowShareUrl, liveShowChatRoomId, createTime, isOrdered, theatreSeat, liveState);
}
}