?? notifydao.java
字號(hào):
package com.saas.biz.dao.notifyDAO;
/**
* Notify generated by MyEclipse Persistence Tools
*/
public class NotifyDAO implements java.io.Serializable{
private static final long serialVersionUID = -4106226838171407605L;
private String id;
private String title;
private String content;
private String path;
private String user;
private String part;
private String pubtime;
private Integer checked;
private String xvisible;
// Constructors
/** default constructor */
public NotifyDAO() {}
/** full constructor */
public NotifyDAO(String title, String content, String path, String user, String part, String pubtime, Integer checked, String xvisible) {
this.title = title;
this.content = content;
this.path = path;
this.user = user;
this.part = part;
this.pubtime = pubtime;
this.checked = checked;
this.xvisible = xvisible;
}
// Property accessors
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getPath() {
return this.path;
}
public void setPath(String path) {
this.path = path;
}
public String getUser() {
return this.user;
}
public void setUser(String user) {
this.user = user;
}
public String getPart() {
return this.part;
}
public void setPart(String part) {
this.part = part;
}
public String getPubtime() {
return this.pubtime;
}
public void setPubtime(String pubtime) {
this.pubtime = pubtime;
}
public Integer getChecked() {
return this.checked;
}
public void setChecked(Integer checked) {
this.checked = checked;
}
public String getXvisible() {
return this.xvisible;
}
public void setXvisible(String xvisible) {
this.xvisible = xvisible;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -