📄 guestorder.java
字号:
package cn.bway.foreigntrade.order.guestorder.model;
/**
* Guestorder generated by MyEclipse Persistence Tools
*/
public class Guestorder implements java.io.Serializable {
// Fields
private String id;
private String guestcode;
private String address;
private String times;
private String froms;
private String tel;
private String fax;
private String linkman;
private String checks;
// Constructors
/** default constructor */
public Guestorder() {
}
/** full constructor */
public Guestorder(String guestcode, String address, String times, String froms, String tel, String fax, String linkman, String check) {
this.guestcode = guestcode;
this.address = address;
this.times = times;
this.froms = froms;
this.tel = tel;
this.fax = fax;
this.linkman = linkman;
this.checks = check;
}
// Property accessors
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getGuestcode() {
return this.guestcode;
}
public void setGuestcode(String guestcode) {
this.guestcode = guestcode;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public String getTimes() {
return this.times;
}
public void setTimes(String times) {
this.times = times;
}
public String getFroms() {
return this.froms;
}
public void setFroms(String froms) {
this.froms = froms;
}
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 getLinkman() {
return this.linkman;
}
public void setLinkman(String linkman) {
this.linkman = linkman;
}
public String getChecks() {
return this.checks;
}
public void setChecks(String check) {
this.checks = check;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -