admin
2021-05-28 5965c01b38a2e83cecd7616daa11185fc2499303
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
package com.tejia.lijin.app.entity;
 
/**
 * Created by Administrator on 2018/9/20.
 */
 
public class RefreshEvent {
    public final static int STATE_ENABLE = 1;
    public final static int STATE_DISABLE = 0;
    public final static int STATE_FINISH = 2;
    private int state;
    private String md5;
 
    public String getMd5() {
        return md5;
    }
 
    public void setMd5(String md5) {
        this.md5 = md5;
    }
 
    public int getState() {
        return state;
    }
 
    public void setState(int state) {
        this.state = state;
    }
 
 
}