📄 address.java
字号:
package com.sush.webstore.store.domain.beans;
import com.sush.webstore.store.domain.IAddress;
public class Address implements IAddress {
private String address;
private String city;
private String country;
private long id;
private String phoneNumber;
private String state;
private String type;
private String zip;
/**
* @return the address
*/
public String getAddress() {
return address;
}
/**
* @return the city
*/
public String getCity() {
return city;
}
/**
* @return the country
*/
public String getCountry() {
return country;
}
/**
* @return the id
*/
public long getId() {
return id;
}
/**
* @return the phoneNumber
*/
public String getPhoneNumber() {
return phoneNumber;
}
/**
* @return the state
*/
public String getState() {
return state;
}
/**
* @return the type
*/
public String getType() {
return type;
}
/**
* @return the zip
*/
public String getZip() {
return zip;
}
/**
* @param address
* the address to set
*/
public void setAddress(String address) {
this.address = address;
}
/**
* @param city
* the city to set
*/
public void setCity(String city) {
this.city = city;
}
/**
* @param country
* the country to set
*/
public void setCountry(String country) {
this.country = country;
}
/**
* @param id
* the id to set
*/
private void setId(long id) {
this.id = id;
}
/**
* @param phoneNumber
* the phoneNumber to set
*/
public void setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
}
/**
* @param state
* the state to set
*/
public void setState(String state) {
this.state = state;
}
/**
* @param type
* the type to set
*/
public void setType(String type) {
this.type = type;
}
/**
* @param zip
* the zip to set
*/
public void setZip(String zip) {
this.zip = zip;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -