📄 todobo.java
字号:
package com.wondersgroup.basemodule.todo.bo;
import com.wondersgroup.basemodule.bo.BaseModuleBo;
import com.wondersgroup.core.BaseBo;
import com.wondersgroup.framework.core.bo.Removable;
/**
* @author zhangren
* @hibernate.class
* table = "BASE_MODULE_TODO"
* dynamic-update = "true"
*/
public class ToDoBo extends BaseBo implements Removable {
private long id; //主键
private BaseModuleBo module; //所属模块ID
private boolean isdisplayed; //显示标志
private String mtd_action; //动词描述
private String mtd_unit; //量词单位
private String mtd_deal; //处理动作
private String mtd_url; //相关链接
public ToDoBo() {
super();
}
/**
* @hibernate.id
* column = "MTD_ID"
* generator-class = "sequence"
* @hibernate.generator-param
* name = "sequence"
* value = "SQE_ToBo"
*/
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
/**
* @hibernate.property
* column = "ISDISPLAYED"
* @return
*/
public boolean isIsdisplayed() {
return isdisplayed;
}
public void setIsdisplayed(boolean isdisplayed) {
this.isdisplayed = isdisplayed;
}
/**
* @hibernate.many-to-one
* column = "MODULE_ID"
* class = "com.wondersgroup.basemodule.bo.BaseModuleBo"
* inverse = "true"
*
* @return
*/
public BaseModuleBo getModule() {
return module;
}
public void setModule(BaseModuleBo module) {
this.module = module;
}
/**
* @hibernate.property
* column = "MTD_ACTION"
* length = "32"
* @return
*/
public String getMtd_action() {
return mtd_action;
}
public void setMtd_action(String mtd_action) {
this.mtd_action = mtd_action;
}
/**
* @hibernate.property
* column = "MTD_DEAL"
* length = "32"
* @return
*/
public String getMtd_deal() {
return mtd_deal;
}
public void setMtd_deal(String mtd_deal) {
this.mtd_deal = mtd_deal;
}
/**
* @hibernate.property
* column = "MTD_UNIT"
* length = "32"
* @return
*/
public String getMtd_unit() {
return mtd_unit;
}
public void setMtd_unit(String mtd_unit) {
this.mtd_unit = mtd_unit;
}
/**
* @hibernate.property
* column = "MTD_URL"
* length = "255"
* @return
*/
public String getMtd_url() {
return mtd_url;
}
public void setMtd_url(String mtd_url) {
this.mtd_url = mtd_url;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -