⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 syscityinfo.java

📁 仿招聘网站 SSH框架 ajax功能
💻 JAVA
字号:
package com.chinahr.pojo;

import java.util.HashSet;
import java.util.Set;

/**
 * SysCityInfo generated by MyEclipse Persistence Tools
 */

public class SysCityInfo implements java.io.Serializable {

	// Fields

	private Integer cityid;

	private String cityname;

	private Set sysAreaInfos = new HashSet(0);

	private Set userIndsForRegCity = new HashSet(0);

	private Set userIndsForBideCity = new HashSet(0);

	// Constructors

	/** default constructor */
	public SysCityInfo() {
	}

	/** minimal constructor */
	public SysCityInfo(String cityname) {
		this.cityname = cityname;
	}

	/** full constructor */
	public SysCityInfo(String cityname, Set sysAreaInfos,
			Set userIndsForRegCity, Set userIndsForBideCity) {
		this.cityname = cityname;
		this.sysAreaInfos = sysAreaInfos;
		this.userIndsForRegCity = userIndsForRegCity;
		this.userIndsForBideCity = userIndsForBideCity;
	}

	// Property accessors

	public Integer getCityid() {
		return this.cityid;
	}

	public void setCityid(Integer cityid) {
		this.cityid = cityid;
	}

	public String getCityname() {
		return this.cityname;
	}

	public void setCityname(String cityname) {
		this.cityname = cityname;
	}

	public Set getSysAreaInfos() {
		return this.sysAreaInfos;
	}

	public void setSysAreaInfos(Set sysAreaInfos) {
		this.sysAreaInfos = sysAreaInfos;
	}

	public Set getUserIndsForRegCity() {
		return this.userIndsForRegCity;
	}

	public void setUserIndsForRegCity(Set userIndsForRegCity) {
		this.userIndsForRegCity = userIndsForRegCity;
	}

	public Set getUserIndsForBideCity() {
		return this.userIndsForBideCity;
	}

	public void setUserIndsForBideCity(Set userIndsForBideCity) {
		this.userIndsForBideCity = userIndsForBideCity;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -