You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
998 B

package com.dsideal.Res.Model;
import com.jfinal.plugin.activerecord.Model;
import com.jfinal.plugin.activerecord.IBean;
/**
* Generated by JFinal, do not modify this file.
*/
@SuppressWarnings("serial")
public abstract class BaseDmSchoollevel<M extends BaseDmSchoollevel<M>> extends Model<M> implements IBean {
/**
* 隶属关系id
*/
public void setLevelId(java.lang.Integer levelId) {
set("level_id", levelId);
}
/**
* 隶属关系id
*/
public java.lang.Integer getLevelId() {
return getInt("level_id");
}
/**
* 隶属关系名称
*/
public void setLevelName(java.lang.String levelName) {
set("level_name", levelName);
}
/**
* 隶属关系名称
*/
public java.lang.String getLevelName() {
return getStr("level_name");
}
/**
* 更新时间戳
*/
public void setUpdateTs(java.util.Date updateTs) {
set("update_ts", updateTs);
}
/**
* 更新时间戳
*/
public java.util.Date getUpdateTs() {
return getDate("update_ts");
}
}