34 lines
574 B
Java
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;
|
|
|
|
}
|