📄 helpervo.java
字号:
package cn.myapps.core.helper.ejb;
import java.io.Serializable;
import cn.myapps.base.dao.ValueObject;
/**
* @hibernate.class table="T_HELPER"
* @author Administrator
*
*/
public class HelperVO extends ValueObject implements Serializable {
String id;
String url;
String title;
String context;
/**
* @hibernate.property column="CONTEXT"
* type="text"
*
* @return
*/
public String getContext() {
return context;
}
public void setContext(String context) {
this.context = context;
}
/**
* @hibernate.id column="ID" generator-class = "assigned"
*/
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
/**
* @hibernate.property column="TITLE"
* @return
*/
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
/**
* @hibernate.property column="URL"
* @return
*/
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -