roletype.java

来自「使用spring ,hibernate 框架的稽查管理系统」· Java 代码 · 共 157 行

JAVA
157
字号
package com.je.ims.hibernate;



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

public class RoleType  implements java.io.Serializable {


    // Fields    

     private Long roleTypeId;
     private String roleTypeName;
     private Long roleKind;
     private Long isAgent;
     private Long isAddrole;
     private Long isAddmember;
     private Long isTeam;
     private Long isYear;
     private Long isMonth;
     private Long isOrg;
     private Long isNode;
     private Long isLdap;


    // Constructors

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

    
    /** full constructor */
    public RoleType(String roleTypeName, Long roleKind, Long isAgent, Long isAddrole, Long isAddmember, Long isTeam, Long isYear, Long isMonth, Long isOrg, Long isNode, Long isLdap) {
        this.roleTypeName = roleTypeName;
        this.roleKind = roleKind;
        this.isAgent = isAgent;
        this.isAddrole = isAddrole;
        this.isAddmember = isAddmember;
        this.isTeam = isTeam;
        this.isYear = isYear;
        this.isMonth = isMonth;
        this.isOrg = isOrg;
        this.isNode = isNode;
        this.isLdap = isLdap;
    }

   
    // Property accessors

    public Long getRoleTypeId() {
        return this.roleTypeId;
    }
    
    public void setRoleTypeId(Long roleTypeId) {
        this.roleTypeId = roleTypeId;
    }

    public String getRoleTypeName() {
        return this.roleTypeName;
    }
    
    public void setRoleTypeName(String roleTypeName) {
        this.roleTypeName = roleTypeName;
    }

    public Long getRoleKind() {
        return this.roleKind;
    }
    
    public void setRoleKind(Long roleKind) {
        this.roleKind = roleKind;
    }

    public Long getIsAgent() {
        return this.isAgent;
    }
    
    public void setIsAgent(Long isAgent) {
        this.isAgent = isAgent;
    }

    public Long getIsAddrole() {
        return this.isAddrole;
    }
    
    public void setIsAddrole(Long isAddrole) {
        this.isAddrole = isAddrole;
    }

    public Long getIsAddmember() {
        return this.isAddmember;
    }
    
    public void setIsAddmember(Long isAddmember) {
        this.isAddmember = isAddmember;
    }

    public Long getIsTeam() {
        return this.isTeam;
    }
    
    public void setIsTeam(Long isTeam) {
        this.isTeam = isTeam;
    }

    public Long getIsYear() {
        return this.isYear;
    }
    
    public void setIsYear(Long isYear) {
        this.isYear = isYear;
    }

    public Long getIsMonth() {
        return this.isMonth;
    }
    
    public void setIsMonth(Long isMonth) {
        this.isMonth = isMonth;
    }

    public Long getIsOrg() {
        return this.isOrg;
    }
    
    public void setIsOrg(Long isOrg) {
        this.isOrg = isOrg;
    }

    public Long getIsNode() {
        return this.isNode;
    }
    
    public void setIsNode(Long isNode) {
        this.isNode = isNode;
    }

    public Long getIsLdap() {
        return this.isLdap;
    }
    
    public void setIsLdap(Long isLdap) {
        this.isLdap = isLdap;
    }
   








}

⌨️ 快捷键说明

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