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

📄 sexinfo.java

📁 对入学者很实用用JAVA的基本语言写的
💻 JAVA
字号:
package lxl;

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

/**
 * SexInfo generated by MyEclipse Persistence Tools
 */

public class SexInfo implements java.io.Serializable {

	// Fields

	private String sexId;

	private String sexValue;

	private Set userInfos = new HashSet(0);

	// Constructors

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

	/** minimal constructor */
	public SexInfo(String sexId, String sexValue) {
		this.sexId = sexId;
		this.sexValue = sexValue;
	}

	/** full constructor */
	public SexInfo(String sexId, String sexValue, Set userInfos) {
		this.sexId = sexId;
		this.sexValue = sexValue;
		this.userInfos = userInfos;
	}

	// Property accessors

	public String getSexId() {
		return this.sexId;
	}

	public void setSexId(String sexId) {
		this.sexId = sexId;
	}

	public String getSexValue() {
		return this.sexValue;
	}

	public void setSexValue(String sexValue) {
		this.sexValue = sexValue;
	}

	public Set getUserInfos() {
		return this.userInfos;
	}

	public void setUserInfos(Set userInfos) {
		this.userInfos = userInfos;
	}

}

⌨️ 快捷键说明

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