📄 contactinfo.java
字号:
package com.tarena.shopcart.entity;
public class Contactinfo {
private long contactId;
private Users user;
private String street1;
private String street2;
private String city;
private Province province;
private Country country;
private String zip;
private String email;
private String homephone;
private String cellphone;
private String officephone;
public String getCellphone() {
return cellphone;
}
public void setCellphone(String cellphone) {
this.cellphone = cellphone;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public long getContactId() {
return contactId;
}
public void setContactId(long contactId) {
this.contactId = contactId;
}
public Country getCountry() {
return country;
}
public void setCountry(Country country) {
this.country = country;
}
public Province getProvince() {
return province;
}
public void setProvince(Province province) {
this.province = province;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getHomephone() {
return homephone;
}
public void setHomephone(String homephone) {
this.homephone = homephone;
}
public String getOfficephone() {
return officephone;
}
public void setOfficephone(String officephone) {
this.officephone = officephone;
}
public String getStreet1() {
return street1;
}
public void setStreet1(String street1) {
this.street1 = street1;
}
public String getStreet2() {
return street2;
}
public void setStreet2(String street2) {
this.street2 = street2;
}
public Users getUser() {
return user;
}
public void setUser(Users user) {
this.user = user;
}
public String getZip() {
return zip;
}
public void setZip(String zip) {
this.zip = zip;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -