📄 customer.java
字号:
/*
* Created on 2009-5-7
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package cn.edu.zucc.firsthibernate;
public class Customer {
private String customerID;
private String companyName;
private String contactName;
private String contactTitle;
private String address;
private String city;
private String region;
private String postalCode;
private String country;
private String phone;
private String fax;
/**
* @return Returns the address.
*/
public String getAddress() {
return address;
}
/**
* @param address The address to set.
*/
public void setAddress(String address) {
this.address = address;
}
/**
* @return Returns the city.
*/
public String getCity() {
return city;
}
/**
* @param city The city to set.
*/
public void setCity(String city) {
this.city = city;
}
/**
* @return Returns the companyName.
*/
public String getCompanyName() {
return companyName;
}
/**
* @param companyName The companyName to set.
*/
public void setCompanyName(String companyName) {
this.companyName = companyName;
}
/**
* @return Returns the contactName.
*/
public String getContactName() {
return contactName;
}
/**
* @param contactName The contactName to set.
*/
public void setContactName(String contactName) {
this.contactName = contactName;
}
/**
* @return Returns the contactTitle.
*/
public String getContactTitle() {
return contactTitle;
}
/**
* @param contactTitle The contactTitle to set.
*/
public void setContactTitle(String contactTitle) {
this.contactTitle = contactTitle;
}
/**
* @return Returns the country.
*/
public String getCountry() {
return country;
}
/**
* @param country The country to set.
*/
public void setCountry(String country) {
this.country = country;
}
/**
* @return Returns the customerID.
*/
public String getCustomerID() {
return customerID;
}
/**
* @param customerID The customerID to set.
*/
public void setCustomerID(String customerID) {
this.customerID = customerID;
}
/**
* @return Returns the fax.
*/
public String getFax() {
return fax;
}
/**
* @param fax The fax to set.
*/
public void setFax(String fax) {
this.fax = fax;
}
/**
* @return Returns the phone.
*/
public String getPhone() {
return phone;
}
/**
* @param phone The phone to set.
*/
public void setPhone(String phone) {
this.phone = phone;
}
/**
* @return Returns the postalCode.
*/
public String getPostalCode() {
return postalCode;
}
/**
* @param postalCode The postalCode to set.
*/
public void setPostalCode(String postalCode) {
this.postalCode = postalCode;
}
/**
* @return Returns the rgion.
*/
public String getRegion() {
return region;
}
/**
* @param rgion The rgion to set.
*/
public void setRegion(String region) {
this.region = region;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -