EventPraiseItem.java
815 Bytes
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
package com.cnlive.goldenline.model;
import android.widget.LinearLayout;
import com.cnlive.goldenline.ui.model.CommentBean;
/**
* Created by xiansong on 2017/4/10.
*/
public class EventPraiseItem {
private CommentBean commentBean;
private int commentAt;
private LinearLayout praiseBtn;
public int getCommentAt() {
return commentAt;
}
public void setCommentAt(int commentAt) {
this.commentAt = commentAt;
}
public CommentBean getCommentBean() {
return commentBean;
}
public void setCommentBean(CommentBean commentBean) {
this.commentBean = commentBean;
}
public LinearLayout getPraiseBtn() {
return praiseBtn;
}
public void setPraiseBtn(LinearLayout praiseBtn) {
this.praiseBtn = praiseBtn;
}
}