tabcity.java

来自「仿招聘网站 SSH框架 ajax功能」· Java 代码 · 共 84 行

JAVA
84
字号
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 + =
减小字号Ctrl + -
显示快捷键?