syscityinfo.java

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

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