📄 province.java
字号:
package com.tarena.shopcart.entity;
import java.util.HashSet;
import java.util.Set;
public class Province {
private long Id;
private String name;
private Country country;
private Set contactinfos = new HashSet();
public Country getCountry() {
return country;
}
public Set getContactinfos() {
return contactinfos;
}
public void setContactinfos(Set contactinfos) {
this.contactinfos = contactinfos;
}
public void setCountry(Country country) {
this.country = country;
}
public long getId() {
return Id;
}
public void setId(long id) {
Id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -