📄 tabcity.java
字号:
package com.chinahr.pojo;
import java.util.HashSet;
import java.util.Set;
/**
* TabCity entity.
*
* @author MyEclipse Persistence Tools
*/
public class TabCity implements java.io.Serializable {
// Fields
private Integer id;
private TabPovince tabPovince=new TabPovince();
private String cityId;
private String city;
private Set tabAreas = new HashSet(0);
// Constructors
/** default constructor */
public TabCity() {
}
/** minimal constructor */
public TabCity(String cityId) {
this.cityId = cityId;
}
/** full constructor */
public TabCity(TabPovince tabPovince, String cityId, String city,
Set tabAreas) {
this.tabPovince = tabPovince;
this.cityId = cityId;
this.city = city;
this.tabAreas = tabAreas;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public TabPovince getTabPovince() {
return this.tabPovince;
}
public void setTabPovince(TabPovince tabPovince) {
this.tabPovince = tabPovince;
}
public String getCityId() {
return this.cityId;
}
public void setCityId(String cityId) {
this.cityId = cityId;
}
public String getCity() {
return this.city;
}
public void setCity(String city) {
this.city = city;
}
public Set getTabAreas() {
return this.tabAreas;
}
public void setTabAreas(Set tabAreas) {
this.tabAreas = tabAreas;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -