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

📄 popedomgroup.java

📁 一个java权限系统.主要使用j2ee框架实现.
💻 JAVA
字号:
package com.wxd.common.popedom.domain.entity;

import java.io.Serializable;
import java.util.Set;
import org.apache.commons.lang.builder.ToStringBuilder;


/** @author Hibernate CodeGenerator */
public class PopedomGroup implements Serializable {

    /** identifier field */
    private Long groupNo;

    /** persistent field */
    private String groupId;

    /** persistent field */
    private String groupName;

    /** nullable persistent field */
    private String groupDescribe;

    /** persistent field */
    private Set groupRoles;

    /** full constructor */
    public PopedomGroup(Long groupNo, String groupId, String groupName, String groupDescribe, Set groupRoles) {
        this.groupNo = groupNo;
        this.groupId = groupId;
        this.groupName = groupName;
        this.groupDescribe = groupDescribe;
        this.groupRoles = groupRoles;
    }

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

    /** minimal constructor */
    public PopedomGroup(Long groupNo, String groupId, String groupName, Set groupRoles) {
        this.groupNo = groupNo;
        this.groupId = groupId;
        this.groupName = groupName;
        this.groupRoles = groupRoles;
    }

    public Long getGroupNo() {
        return this.groupNo;
    }

    public void setGroupNo(Long groupNo) {
        this.groupNo = groupNo;
    }

    public String getGroupId() {
        return this.groupId;
    }

    public void setGroupId(String groupId) {
        this.groupId = groupId;
    }

    public String getGroupName() {
        return this.groupName;
    }

    public void setGroupName(String groupName) {
        this.groupName = groupName;
    }

    public String getGroupDescribe() {
        return this.groupDescribe;
    }

    public void setGroupDescribe(String groupDescribe) {
        this.groupDescribe = groupDescribe;
    }

    public Set getGroupRoles() {
        return this.groupRoles;
    }

    public void setGroupRoles(Set groupRoles) {
        this.groupRoles = groupRoles;
    }

    public String toString() {
        return new ToStringBuilder(this)
            .append("groupNo", getGroupNo())
            .toString();
    }

}

⌨️ 快捷键说明

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