?? telbookdao.java
字號:
package com.saas.biz.dao.telbookDAO;
/**
* Telbook generated by MyEclipse Persistence Tools
*/
public class TelbookDAO implements java.io.Serializable{
private static final long serialVersionUID = -716540810285064729L;
private Integer id;
private String phone;
private String comment;
private Integer xshare;
private String recorduser;
private String part;
private String pubtime;
private String user;
// Constructors
/** default constructor */
public TelbookDAO() {}
/** full constructor */
public TelbookDAO(String phone, String comment, Integer xshare, String recorduser, String part,String user) {
this.phone = phone;
this.comment = comment;
this.xshare = xshare;
this.recorduser = recorduser;
this.part = part;
this.user=user;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getXshare() {
return this.xshare;
}
public void setXshare(Integer xshare) {
this.xshare = xshare;
}
public String getRecorduser() {
return this.recorduser;
}
public void setRecorduser(String recorduser) {
this.recorduser = recorduser;
}
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 String getComment() {
return comment;
}
public void setComment(String comment) {
this.comment = comment;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getUser() {
return user;
}
public void setUser(String user) {
this.user = user;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -