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

📄 abstractrole1.java

📁 hibernate应用测试,初学hibernate 的会员可以看看.
💻 JAVA
字号:
package gdpe.hibernate.role;

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


/**
 * AbstractRole1 generated by MyEclipse - Hibernate Tools
 */

public abstract class AbstractRole1  implements java.io.Serializable {


    // Fields    

     private String chrolecode;
     private String chrolename;
     private String chroledesc;
     private Set auditorrole1s = new HashSet(0);


    // Constructors

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

	/** minimal constructor */
    public AbstractRole1(String chrolecode) {
        this.chrolecode = chrolecode;
    }
    
    /** full constructor */
    public AbstractRole1(String chrolecode, String chrolename, String chroledesc, Set auditorrole1s) {
        this.chrolecode = chrolecode;
        this.chrolename = chrolename;
        this.chroledesc = chroledesc;
        this.auditorrole1s = auditorrole1s;
    }

   
    // Property accessors

    public String getChrolecode() {
        return this.chrolecode;
    }
    
    public void setChrolecode(String chrolecode) {
        this.chrolecode = chrolecode;
    }

    public String getChrolename() {
        return this.chrolename;
    }
    
    public void setChrolename(String chrolename) {
        this.chrolename = chrolename;
    }

    public String getChroledesc() {
        return this.chroledesc;
    }
    
    public void setChroledesc(String chroledesc) {
        this.chroledesc = chroledesc;
    }

    public Set getAuditorrole1s() {
        return this.auditorrole1s;
    }
    
    public void setAuditorrole1s(Set auditorrole1s) {
        this.auditorrole1s = auditorrole1s;
    }
   








}

⌨️ 快捷键说明

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