📄 victualertable.java
字号:
package com.xfaccp.form;
import java.util.HashSet;
import java.util.Set;
import com.xfaccp.base.BaseForm;
/**
* VictualerTable generated by MyEclipse Persistence Tools
*/
public class VictualerTable extends BaseForm {
// Fields
private String vicName;
private String vicAddress;
private String vicPcode;
private String vicPhone;
private String vicPerson;
private String vicEmail;
private String vicTaxno;
private String vicAccounts;
private String vicBank;
private String vicRemark;
private Set accessoryTables = new HashSet(0);
// Constructors
/** default constructor */
public VictualerTable() {
}
/** full constructor */
public VictualerTable(String vicName, String vicAddress, String vicPcode,
String vicPhone, String vicPerson, String vicEmail,
String vicTaxno, String vicAccounts, String vicBank,
String vicRemark, Set accessoryTables) {
this.vicName = vicName;
this.vicAddress = vicAddress;
this.vicPcode = vicPcode;
this.vicPhone = vicPhone;
this.vicPerson = vicPerson;
this.vicEmail = vicEmail;
this.vicTaxno = vicTaxno;
this.vicAccounts = vicAccounts;
this.vicBank = vicBank;
this.vicRemark = vicRemark;
this.accessoryTables = accessoryTables;
}
// Property accessors
public String getVicName() {
return this.vicName;
}
public void setVicName(String vicName) {
this.vicName = vicName;
}
public String getVicAddress() {
return this.vicAddress;
}
public void setVicAddress(String vicAddress) {
this.vicAddress = vicAddress;
}
public String getVicPcode() {
return this.vicPcode;
}
public void setVicPcode(String vicPcode) {
this.vicPcode = vicPcode;
}
public String getVicPhone() {
return this.vicPhone;
}
public void setVicPhone(String vicPhone) {
this.vicPhone = vicPhone;
}
public String getVicPerson() {
return this.vicPerson;
}
public void setVicPerson(String vicPerson) {
this.vicPerson = vicPerson;
}
public String getVicEmail() {
return this.vicEmail;
}
public void setVicEmail(String vicEmail) {
this.vicEmail = vicEmail;
}
public String getVicTaxno() {
return this.vicTaxno;
}
public void setVicTaxno(String vicTaxno) {
this.vicTaxno = vicTaxno;
}
public String getVicAccounts() {
return this.vicAccounts;
}
public void setVicAccounts(String vicAccounts) {
this.vicAccounts = vicAccounts;
}
public String getVicBank() {
return this.vicBank;
}
public void setVicBank(String vicBank) {
this.vicBank = vicBank;
}
public String getVicRemark() {
return this.vicRemark;
}
public void setVicRemark(String vicRemark) {
this.vicRemark = vicRemark;
}
public Set getAccessoryTables() {
return this.accessoryTables;
}
public void setAccessoryTables(Set accessoryTables) {
this.accessoryTables = accessoryTables;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -