role.java

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

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



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

public class Role  implements java.io.Serializable {


    // Fields    

     private RoleId id;
     private String roleName;
     private String roleDoc;
     private Long isDelete;
     private Long year;
     private Long month;
     private Long teamPk;
     private String teamName;
     private String ab;
     private String nodeId;
     private String orgId;
     private String orgName;
     private String crUserId;
     private String crUserName;
     private String crUserUnit;


    // Constructors

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

	/** minimal constructor */
    public Role(RoleId id, String roleName, String roleDoc, Long isDelete, String crUserId, String crUserName, String crUserUnit) {
        this.id = id;
        this.roleName = roleName;
        this.roleDoc = roleDoc;
        this.isDelete = isDelete;
        this.crUserId = crUserId;
        this.crUserName = crUserName;
        this.crUserUnit = crUserUnit;
    }
    
    /** full constructor */
    public Role(RoleId id, String roleName, String roleDoc, Long isDelete, Long year, Long month, Long teamPk, String teamName, String ab, String nodeId, String orgId, String orgName, String crUserId, String crUserName, String crUserUnit) {
        this.id = id;
        this.roleName = roleName;
        this.roleDoc = roleDoc;
        this.isDelete = isDelete;
        this.year = year;
        this.month = month;
        this.teamPk = teamPk;
        this.teamName = teamName;
        this.ab = ab;
        this.nodeId = nodeId;
        this.orgId = orgId;
        this.orgName = orgName;
        this.crUserId = crUserId;
        this.crUserName = crUserName;
        this.crUserUnit = crUserUnit;
    }

   
    // Property accessors

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

    public String getRoleName() {
        return this.roleName;
    }
    
    public void setRoleName(String roleName) {
        this.roleName = roleName;
    }

    public String getRoleDoc() {
        return this.roleDoc;
    }
    
    public void setRoleDoc(String roleDoc) {
        this.roleDoc = roleDoc;
    }

    public Long getIsDelete() {
        return this.isDelete;
    }
    
    public void setIsDelete(Long isDelete) {
        this.isDelete = isDelete;
    }

    public Long getYear() {
        return this.year;
    }
    
    public void setYear(Long year) {
        this.year = year;
    }

    public Long getMonth() {
        return this.month;
    }
    
    public void setMonth(Long month) {
        this.month = month;
    }

    public Long getTeamPk() {
        return this.teamPk;
    }
    
    public void setTeamPk(Long teamPk) {
        this.teamPk = teamPk;
    }

    public String getTeamName() {
        return this.teamName;
    }
    
    public void setTeamName(String teamName) {
        this.teamName = teamName;
    }

    public String getAb() {
        return this.ab;
    }
    
    public void setAb(String ab) {
        this.ab = ab;
    }

    public String getNodeId() {
        return this.nodeId;
    }
    
    public void setNodeId(String nodeId) {
        this.nodeId = nodeId;
    }

    public String getOrgId() {
        return this.orgId;
    }
    
    public void setOrgId(String orgId) {
        this.orgId = orgId;
    }

    public String getOrgName() {
        return this.orgName;
    }
    
    public void setOrgName(String orgName) {
        this.orgName = orgName;
    }

    public String getCrUserId() {
        return this.crUserId;
    }
    
    public void setCrUserId(String crUserId) {
        this.crUserId = crUserId;
    }

    public String getCrUserName() {
        return this.crUserName;
    }
    
    public void setCrUserName(String crUserName) {
        this.crUserName = crUserName;
    }

    public String getCrUserUnit() {
        return this.crUserUnit;
    }
    
    public void setCrUserUnit(String crUserUnit) {
        this.crUserUnit = crUserUnit;
    }
   








}

⌨️ 快捷键说明

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