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

📄 abstractpartygroup.java

📁 评分系统,acegi+JSF+spring+hibernate,可上传附件
💻 JAVA
字号:
package com.sgm.partybranch.vo.sysadmin;

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

/**
 * AbstractPartyGroup entity provides the base persistence definition of the
 * PartyGroup entity. @author MyEclipse Persistence Tools
 */

public abstract class AbstractPartyGroup implements java.io.Serializable {

	// Fields

	private String partyGroupId;
	private PartyBranch partyBranch;
	private String partyGroupName;
	private Set users = new HashSet(0);

	// Constructors

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

	/** full constructor */
	public AbstractPartyGroup(PartyBranch partyBranch,
			String partyGroupName, Set users) {
		this.partyBranch = partyBranch;
		this.partyGroupName = partyGroupName;
		this.users = users;
	}

	// Property accessors

	public String getPartyGroupId() {
		return this.partyGroupId;
	}

	public void setPartyGroupId(String partyGroupId) {
		this.partyGroupId = partyGroupId;
	}

	public PartyBranch getPartyBranch() {
		return this.partyBranch;
	}

	public void setPartyBranch(PartyBranch partyBranch) {
		this.partyBranch = partyBranch;
	}

	public String getPartyGroupName() {
		return this.partyGroupName;
	}

	public void setPartyGroupName(String partyGroupName) {
		this.partyGroupName = partyGroupName;
	}

	public Set getUsers() {
		return this.users;
	}

	public void setUsers(Set users) {
		this.users = users;
	}

}

⌨️ 快捷键说明

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