operatetb.java

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

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

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


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

public class OperateTb  implements java.io.Serializable {


    // Fields    

     private long id;
     private String name;
     private Set privilegeTbs = new HashSet(0);


    // Constructors

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

	/** minimal constructor */
    public OperateTb(String name) {
        this.name = name;
    }
    
    /** full constructor */
    public OperateTb(String name, Set privilegeTbs) {
        this.name = name;
        this.privilegeTbs = privilegeTbs;
    }

   
    // Property accessors

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

    public String getName() {
        return this.name;
    }
    
    public void setName(String name) {
        this.name = name;
    }

    public Set getPrivilegeTbs() {
        return this.privilegeTbs;
    }
    
    public void setPrivilegeTbs(Set privilegeTbs) {
        this.privilegeTbs = privilegeTbs;
    }
   








}

⌨️ 快捷键说明

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