Files
fuzhu/app/src/main/java/com/fisherbone/fuzhu/entity/MessageBean.java
2021-10-22 16:16:00 +08:00

34 lines
574 B
Java

package com.fisherbone.fuzhu.entity;
import com.j256.ormlite.field.DatabaseField;
import com.j256.ormlite.table.DatabaseTable;
/**
* Time: 2020/8/28
* Author: jianbo
* Description:
*/
public class MessageBean {
public int getRuntime() {
return runtime;
}
public void setRuntime(int runtime) {
this.runtime = runtime;
}
private int runtime;
public String getFromtype() {
return fromtype;
}
public void setFromtype(String fromtype) {
this.fromtype = fromtype;
}
private String fromtype;
}