conecttype.java

来自「用ssh实现的简单通讯录+需要数据库」· Java 代码 · 共 68 行

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