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;
|
}
|
|
|
}
|