|
...
|
...
|
@@ -44,4 +44,100 @@ public class AfmsBasicCustomer { |
|
|
|
private Date createTime;
|
|
|
|
|
|
|
|
// 省略getter和setter方法
|
|
|
|
|
|
|
|
public Integer getId() {
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setId(Integer id) {
|
|
|
|
this.id = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getName() {
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setName(String name) {
|
|
|
|
this.name = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Integer getCustomerTypeId() {
|
|
|
|
return customerTypeId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCustomerTypeId(Integer customerTypeId) {
|
|
|
|
this.customerTypeId = customerTypeId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getContactPerson() {
|
|
|
|
return contactPerson;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setContactPerson(String contactPerson) {
|
|
|
|
this.contactPerson = contactPerson;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getContactPhone() {
|
|
|
|
return contactPhone;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setContactPhone(String contactPhone) {
|
|
|
|
this.contactPhone = contactPhone;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getContactAddress() {
|
|
|
|
return contactAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setContactAddress(String contactAddress) {
|
|
|
|
this.contactAddress = contactAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getTaxpayerIdentificationNumber() {
|
|
|
|
return taxpayerIdentificationNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setTaxpayerIdentificationNumber(String taxpayerIdentificationNumber) {
|
|
|
|
this.taxpayerIdentificationNumber = taxpayerIdentificationNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getBank() {
|
|
|
|
return bank;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setBank(String bank) {
|
|
|
|
this.bank = bank;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getAccountName() {
|
|
|
|
return accountName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setAccountName(String accountName) {
|
|
|
|
this.accountName = accountName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getAccountNumber() {
|
|
|
|
return accountNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setAccountNumber(String accountNumber) {
|
|
|
|
this.accountNumber = accountNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getBusinessLicense() {
|
|
|
|
return businessLicense;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setBusinessLicense(String businessLicense) {
|
|
|
|
this.businessLicense = businessLicense;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Date getCreateTime() {
|
|
|
|
return createTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
|
|
this.createTime = createTime;
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|