admin
2021-02-04 34a18e852c1e3b5da43da02e6bdeab6b28a1fdd2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.weikou.beibeivideo.entity;
 
/**
 * 传递eventbus信息
 * 
 * @author weikou2015
 * 
 */
public class NewComment {
 
    boolean isChecked = false;
 
    public NewComment(boolean isChecked) {
        this.isChecked = isChecked;
    }
 
    public boolean getState() {
        return isChecked;
    }
}