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

📄 areainfo.java

📁 用户可以登陆注册对房屋信息的增删改查功能
💻 JAVA
字号:
package com.qhit.kgdyffje.vo;

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

/**
 * Areainfo entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public class Areainfo implements java.io.Serializable {

	// Fields

	private int qxid;
	private String qx;
	private Set channelSet = new HashSet(0);

	// Constructors

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

	/** full constructor */
	public Areainfo(String qx, Set channels) {
		this.qx = qx;
		this.channelSet = channels;
	}

	// Property accessors

	public int getQxid() {
		return this.qxid;
	}

	public void setQxid(int qxid) {
		this.qxid = qxid;
	}

	public String getQx() {
		return this.qx;
	}

	public void setQx(String qx) {
		this.qx = qx;
	}

	public Set getChannelSet() {
		return channelSet;
	}

	public void setChannelSet(Set channelSet) {
		this.channelSet = channelSet;
	}

}

⌨️ 快捷键说明

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