TheaterInfoBean.java
1.87 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
package com.cnlive.goldenline.ui.model;
import android.os.Parcel;
import android.os.Parcelable;
import java.io.Serializable;
/**
* Description:
* Created on 2017/3/6
* Author : 萧
*/
public class TheaterInfoBean implements Serializable, Parcelable {
private String img;
private String title;
private int id;
public TheaterInfoBean() {
}
public TheaterInfoBean(String img, String title, int id) {
this.img = img;
this.title = title;
this.id = id;
}
public String getImg() {
return img;
}
public void setImg(String img) {
this.img = img;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
@Override
public String toString() {
return "TheaterInfoBean{" +
"img='" + img + '\'' +
", title='" + title + '\'' +
", id=" + id +
'}';
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeString(this.img);
dest.writeString(this.title);
dest.writeInt(this.id);
}
protected TheaterInfoBean(Parcel in) {
this.img = in.readString();
this.title = in.readString();
this.id = in.readInt();
}
public static final Parcelable.Creator<TheaterInfoBean> CREATOR = new Parcelable.Creator<TheaterInfoBean>() {
@Override
public TheaterInfoBean createFromParcel(Parcel source) {
return new TheaterInfoBean(source);
}
@Override
public TheaterInfoBean[] newArray(int size) {
return new TheaterInfoBean[size];
}
};
}