📄 postdao.java
字号:
package com.saas.biz.dao.postDAO;
/**
* Post generated by MyEclipse Persistence Tools
*/
public class PostDAO implements java.io.Serializable{
private static final long serialVersionUID = -425616281276899696L;
private Integer id;
private String dq;
private String dm;
private String yb;
private String qh;
// Constructors
/** default constructor */
public PostDAO() {}
/** full constructor */
public PostDAO(String dq, String dm, String yb, String qh) {
this.dq = dq;
this.dm = dm;
this.yb = yb;
this.qh = qh;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getDq() {
return this.dq;
}
public void setDq(String dq) {
this.dq = dq;
}
public String getDm() {
return this.dm;
}
public void setDm(String dm) {
this.dm = dm;
}
public String getYb() {
return this.yb;
}
public void setYb(String yb) {
this.yb = yb;
}
public String getQh() {
return this.qh;
}
public void setQh(String qh) {
this.qh = qh;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -