📄 nynewsdao.java
字号:
package com.saas.biz.dao.nynewsDAO;
/**
* Nynews generated by MyEclipse Persistence Tools
*/
public class NynewsDAO implements java.io.Serializable{
private static final long serialVersionUID = -4313597195677462584L;
private Integer id;
private String type;
private String title;
private String content;
private String sites;
private String pubtime;
// Constructors
/** default constructor */
public NynewsDAO() {}
/** full constructor */
public NynewsDAO(String type, String title, String content, String sites, String pubtime) {
this.type = type;
this.title = title;
this.content = content;
this.sites = sites;
this.pubtime = pubtime;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
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 getSites() {
return this.sites;
}
public void setSites(String sites) {
this.sites = sites;
}
public String getPubtime() {
return this.pubtime;
}
public void setPubtime(String pubtime) {
this.pubtime = pubtime;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -