📄 country.java
字号:
package org.springframework.samples.countries;
/**
* @author Jean-Pierre Pawlak
*/
public class Country {
private String code;
private String name;
public Country() {
}
public Country(String code, String name) {
super();
this.code = code;
this.name = name;
}
public void setCode(String code) {
this.code = code;
}
public String getCode() {
return code;
}
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -