📄 country.java
字号:
package demo.domain;
import java.io.Serializable;
/**
* @version 1.0
*/
public class Country implements Serializable {
private String code;
private String name;
private String continent;
private int population;
private double gnp;
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getContinent() {
return continent;
}
public void setContinent(String continent) {
this.continent = continent;
}
public double getGnp() {
return gnp;
}
public void setGnp(double gnp) {
this.gnp = gnp;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getPopulation() {
return population;
}
public void setPopulation(int population) {
this.population = population;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -