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

📄 conectinfo.java

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

/**
 * Conectinfo generated by MyEclipse Persistence Tools
 */

public class Conectinfo implements java.io.Serializable {

	// Fields

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

	private Integer lxid;

	private Userinfo userinfo;

	private Conecttype conecttype;

	private String name;

	private Integer sexid;

	private String phone;

	private String mphone;

	private String cpyname;

	private String cpyaddress;

	private String address;

	// Constructors

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

	/** minimal constructor */
	public Conectinfo(Userinfo userinfo, Conecttype conecttype, String name,
			Integer sexid) {
		this.userinfo = userinfo;
		this.conecttype = conecttype;
		this.name = name;
		this.sexid = sexid;
	}

	/** full constructor */
	public Conectinfo(Userinfo userinfo, Conecttype conecttype, String name,
			Integer sexid, String phone, String mphone, String cpyname,
			String cpyaddress, String address) {
		this.userinfo = userinfo;
		this.conecttype = conecttype;
		this.name = name;
		this.sexid = sexid;
		this.phone = phone;
		this.mphone = mphone;
		this.cpyname = cpyname;
		this.cpyaddress = cpyaddress;
		this.address = address;
	}

	// Property accessors

	public Integer getLxid() {
		return this.lxid;
	}

	public void setLxid(Integer lxid) {
		this.lxid = lxid;
	}

	public Userinfo getUserinfo() {
		return this.userinfo;
	}

	public void setUserinfo(Userinfo userinfo) {
		this.userinfo = userinfo;
	}

	public Conecttype getConecttype() {
		return this.conecttype;
	}

	public void setConecttype(Conecttype conecttype) {
		this.conecttype = conecttype;
	}

	public String getName() {
		return this.name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public Integer getSexid() {
		return this.sexid;
	}

	public void setSexid(Integer sexid) {
		this.sexid = sexid;
	}

	public String getPhone() {
		return this.phone;
	}

	public void setPhone(String phone) {
		this.phone = phone;
	}

	public String getMphone() {
		return this.mphone;
	}

	public void setMphone(String mphone) {
		this.mphone = mphone;
	}

	public String getCpyname() {
		return this.cpyname;
	}

	public void setCpyname(String cpyname) {
		this.cpyname = cpyname;
	}

	public String getCpyaddress() {
		return this.cpyaddress;
	}

	public void setCpyaddress(String cpyaddress) {
		this.cpyaddress = cpyaddress;
	}

	public String getAddress() {
		return this.address;
	}

	public void setAddress(String address) {
		this.address = address;
	}

}

⌨️ 快捷键说明

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