contactinfo.java
来自「一个优秀的供应商管理系统」· Java 代码 · 共 59 行
JAVA
59 行
package apusic.myshop.util;public class ContactInfo implements java.io.Serializable { private String name; private String phone; private String email; private String address; private String province; private String city; private String zip; private String country; public ContactInfo(String name, String phone, String email, String address, String province, String city, String zip, String country) { this.name = name; this.phone = phone; this.email = email; this.address = address; this.province = province; this.city = city; this.zip = zip; this.country = country; } public String getName() { return name; } public String getPhone() { return phone; } public String getEmail() { return email; } public String getAddress() { return address; } public String getProvince() { return province; } public String getCity() { return city; } public String getZip() { return zip; } public String getCountry() { return country; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?