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