areainfo.java
来自「用户可以登陆注册对房屋信息的增删改查功能」· Java 代码 · 共 58 行
JAVA
58 行
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 + =
减小字号Ctrl + -
显示快捷键?