📄 customertable.java
字号:
package com.xfaccp.form;
import com.xfaccp.base.BaseForm;
/**
* CustomerTable generated by MyEclipse Persistence Tools
*/
public class CustomerTable extends BaseForm {
// Fields
private String cusName;
private String cusAdd;
private String cusPcode;
private String cusPhone;
private String cusPerson;
private String cusEmail;
private String cusTaxno;
private String cusAccounts;
private String cusBank;
private String cusRemark;
// Constructors
/** default constructor */
public CustomerTable() {
}
/** full constructor */
public CustomerTable(String cusName, String cusAdd, String cusPcode,
String cusPhone, String cusPerson, String cusEmail,
String cusTaxno, String cusAccounts, String cusBank,
String cusRemark) {
this.cusName = cusName;
this.cusAdd = cusAdd;
this.cusPcode = cusPcode;
this.cusPhone = cusPhone;
this.cusPerson = cusPerson;
this.cusEmail = cusEmail;
this.cusTaxno = cusTaxno;
this.cusAccounts = cusAccounts;
this.cusBank = cusBank;
this.cusRemark = cusRemark;
}
// Property accessors
public String getCusName() {
return this.cusName;
}
public void setCusName(String cusName) {
this.cusName = cusName;
}
public String getCusAdd() {
return this.cusAdd;
}
public void setCusAdd(String cusAdd) {
this.cusAdd = cusAdd;
}
public String getCusPcode() {
return this.cusPcode;
}
public void setCusPcode(String cusPcode) {
this.cusPcode = cusPcode;
}
public String getCusPhone() {
return this.cusPhone;
}
public void setCusPhone(String cusPhone) {
this.cusPhone = cusPhone;
}
public String getCusPerson() {
return this.cusPerson;
}
public void setCusPerson(String cusPerson) {
this.cusPerson = cusPerson;
}
public String getCusEmail() {
return this.cusEmail;
}
public void setCusEmail(String cusEmail) {
this.cusEmail = cusEmail;
}
public String getCusTaxno() {
return this.cusTaxno;
}
public void setCusTaxno(String cusTaxno) {
this.cusTaxno = cusTaxno;
}
public String getCusAccounts() {
return this.cusAccounts;
}
public void setCusAccounts(String cusAccounts) {
this.cusAccounts = cusAccounts;
}
public String getCusBank() {
return this.cusBank;
}
public void setCusBank(String cusBank) {
this.cusBank = cusBank;
}
public String getCusRemark() {
return this.cusRemark;
}
public void setCusRemark(String cusRemark) {
this.cusRemark = cusRemark;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -