impowertb.java

来自「一个新闻发布系统」· Java 代码 · 共 67 行

JAVA
67
字号
package com.accp.t29.hibernate.pojo;



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

public class ImpowerTb  implements java.io.Serializable {


    // Fields    

     private long id;
     private PrivilegeTb privilegeTb;
     private RoleTb roleTb;


    // Constructors

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

    
    /** full constructor */
    public ImpowerTb(PrivilegeTb privilegeTb, RoleTb roleTb) {
        this.privilegeTb = privilegeTb;
        this.roleTb = roleTb;
    }

   
    // Property accessors

    public long getId() {
        return this.id;
    }
    
    public void setId(long id) {
        this.id = id;
    }

    public PrivilegeTb getPrivilegeTb() {
        return this.privilegeTb;
    }
    
    public void setPrivilegeTb(PrivilegeTb privilegeTb) {
        this.privilegeTb = privilegeTb;
    }

    public RoleTb getRoleTb() {
        return this.roleTb;
    }
    
    public void setRoleTb(RoleTb roleTb) {
        this.roleTb = roleTb;
    }
   








}

⌨️ 快捷键说明

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