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.
44 lines
940 B
44 lines
940 B
package com.bt.common.model.base;
|
|
|
|
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 BasePermission<M extends BasePermission<M>> extends Model<M> implements IBean {
|
|
|
|
public void setId(java.lang.Integer id) {
|
|
set("id", id);
|
|
}
|
|
|
|
public java.lang.Integer getId() {
|
|
return getInt("id");
|
|
}
|
|
|
|
public void setActionKey(java.lang.String actionKey) {
|
|
set("actionKey", actionKey);
|
|
}
|
|
|
|
public java.lang.String getActionKey() {
|
|
return getStr("actionKey");
|
|
}
|
|
|
|
public void setController(java.lang.String controller) {
|
|
set("controller", controller);
|
|
}
|
|
|
|
public java.lang.String getController() {
|
|
return getStr("controller");
|
|
}
|
|
|
|
public void setRemark(java.lang.String remark) {
|
|
set("remark", remark);
|
|
}
|
|
|
|
public java.lang.String getRemark() {
|
|
return getStr("remark");
|
|
}
|
|
|
|
}
|
|
|