📄 location.java
字号:
package com.mydomain.dvc;
import java.io.Serializable;
public class Location implements Serializable {
private String country;
private String address;
private String phone;
public Location() {}
public Location(String country, String address, String phone) {
setCountry(country);
setAddress(address);
setPhone(phone);
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -