?? forinfodao.java
字號:
package com.saas.biz.dao.forinfoDAO;
public class ForinfoDAO implements java.io.Serializable{
// Fields
private static final long serialVersionUID = 5542846085523829206L;
private Integer id;
private String title;
private String scale;
private String brief;
private String content;
private String wholeprice;
private String type;
private String unit;
private String tel;
private String fax;
private String email;
private String recorduser;
private Integer part;
private String pubtime;
// Constructors
/** default constructor */
public ForinfoDAO() {}
/** full constructor */
public ForinfoDAO(String title, String scale, String brief, String content, String wholeprice, String type, String unit, String tel, String fax, String email, String recorduser, Integer part, String pubtime) {
this.title = title;
this.scale = scale;
this.brief = brief;
this.content = content;
this.wholeprice = wholeprice;
this.type = type;
this.unit = unit;
this.tel = tel;
this.fax = fax;
this.email = email;
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 getScale() {
return this.scale;
}
public void setScale(String scale) {
this.scale = scale;
}
public String getBrief() {
return this.brief;
}
public void setBrief(String brief) {
this.brief = brief;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getWholeprice() {
return this.wholeprice;
}
public void setWholeprice(String wholeprice) {
this.wholeprice = wholeprice;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getUnit() {
return this.unit;
}
public void setUnit(String unit) {
this.unit = unit;
}
public String getTel() {
return this.tel;
}
public void setTel(String tel) {
this.tel = tel;
}
public String getFax() {
return this.fax;
}
public void setFax(String fax) {
this.fax = fax;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
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 + -