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

📄 conecttype.java

📁 用ssh实现的简单通讯录+需要数据库
💻 JAVA
字号:
package po;

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

/**
 * Conecttype generated by MyEclipse Persistence Tools
 */

public class Conecttype implements java.io.Serializable {

	// Fields

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	private Integer utid;

	private String utname;

	private Set conectinfos = new HashSet(0);

	// Constructors

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

	/** minimal constructor */
	public Conecttype(String utname) {
		this.utname = utname;
	}

	/** full constructor */
	public Conecttype(String utname, Set conectinfos) {
		this.utname = utname;
		this.conectinfos = conectinfos;
	}

	// Property accessors

	public Integer getUtid() {
		return this.utid;
	}

	public void setUtid(Integer utid) {
		this.utid = utid;
	}

	public String getUtname() {
		return this.utname;
	}

	public void setUtname(String utname) {
		this.utname = utname;
	}

	public Set getConectinfos() {
		return this.conectinfos;
	}

	public void setConectinfos(Set conectinfos) {
		this.conectinfos = conectinfos;
	}

}

⌨️ 快捷键说明

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