?? contactinfo.java
字號:
package cn.com.tarena.ecport.pojo;
/**
* <pre>
* 聯(lián)系信息Pojo
* 此Pojo映射數(shù)據(jù)庫中的ContactInfo表
* </pre>
*
* @author zhouyu 2008-1-16
*/
public class ContactInfo extends BasePojo {
/**
*
*/
private static final long serialVersionUID = 1859915020935798258L;
private Long contactid;//
private User users;//
private String street1;//
private String street2;//
private Country country;//
private Province province;//
private String city;//????
private String zip;//???
private String email;//?????
private String homephone;//
private String cellphone;//????
private String officephone;//?
public ContactInfo() {
}
public ContactInfo(User users, String street1, String street2, Country country, Province province, String city, String zip, String email, String homephone, String cellphone, String officephone) {
this.users = users;
this.street1 = street1;
this.street2 = street2;
this.country = country;
this.province = province;
this.city = city;
this.zip = zip;
this.email = email;
this.homephone = homephone;
this.cellphone = cellphone;
this.officephone = officephone;
}
/**
* @return the cellphone
*/
public String getCellphone() {
return cellphone;
}
/**
* @param cellphone the cellphone to set
*/
public void setCellphone(String cellphone) {
this.cellphone = cellphone;
}
/**
* @return the city
*/
public String getCity() {
return city;
}
/**
* @param city the city to set
*/
public void setCity(String city) {
this.city = city;
}
/**
* @return the contactid
*/
public Long getContactid() {
return contactid;
}
/**
* @param contactid the contactid to set
*/
public void setContactid(Long contactid) {
this.contactid = contactid;
}
/**
* @return the email
*/
public String getEmail() {
return email;
}
/**
* @param email the email to set
*/
public void setEmail(String email) {
this.email = email;
}
/**
* @return the homephone
*/
public String getHomephone() {
return homephone;
}
/**
* @param homephone the homephone to set
*/
public void setHomephone(String homephone) {
this.homephone = homephone;
}
/**
* @return the officephone
*/
public String getOfficephone() {
return officephone;
}
/**
* @param officephone the officephone to set
*/
public void setOfficephone(String officephone) {
this.officephone = officephone;
}
/**
* @return the country
*/
public Country getCountry() {
return country;
}
/**
* @param country the country to set
*/
public void setCountry(Country country) {
this.country = country;
}
/**
* @return the province
*/
public Province getProvince() {
return province;
}
/**
* @param province the province to set
*/
public void setProvince(Province province) {
this.province = province;
}
/**
* @return the street1
*/
public String getStreet1() {
return street1;
}
/**
* @return the users
*/
public User getUsers() {
return users;
}
/**
* @param users the users to set
*/
public void setUsers(User users) {
this.users = users;
}
/**
* @param street1 the street1 to set
*/
public void setStreet1(String street1) {
this.street1 = street1;
}
/**
* @return the street2
*/
public String getStreet2() {
return street2;
}
/**
* @param street2 the street2 to set
*/
public void setStreet2(String street2) {
this.street2 = street2;
}
/**
* @return the zip
*/
public String getZip() {
return zip;
}
/**
* @param zip the zip to set
*/
public void setZip(String zip) {
this.zip = zip;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -