?? patentsdao.java
字號:
package com.saas.biz.dao.patentsDAO;
/**
* Patents generated by MyEclipse Persistence Tools
*/
public class PatentsDAO implements java.io.Serializable{
private static final long serialVersionUID = 6148147107687349095L;
private Integer id;
private String title;
private String connman;
private String address;
private String tel;
private String comment;
private String recorduser;
private Integer part;
private String pubtime;
// Constructors
/** default constructor */
public PatentsDAO() {}
/** full constructor */
public PatentsDAO(String title, String connman, String address, String tel, String comment, String recorduser, Integer part, String pubtime) {
this.title = title;
this.connman = connman;
this.address = address;
this.tel = tel;
this.comment = comment;
this.recorduser = recorduser;
this.part = part;
this.pubtime = pubtime;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getConnman() {
return this.connman;
}
public void setConnman(String connman) {
this.connman = connman;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public String getTel() {
return this.tel;
}
public void setTel(String tel) {
this.tel = tel;
}
public String getComment() {
return this.comment;
}
public void setComment(String comment) {
this.comment = comment;
}
public String getRecorduser() {
return this.recorduser;
}
public void setRecorduser(String recorduser) {
this.recorduser = recorduser;
}
public Integer getPart() {
return this.part;
}
public void setPart(Integer part) {
this.part = part;
}
public String getPubtime() {
return this.pubtime;
}
public void setPubtime(String pubtime) {
this.pubtime = pubtime;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -