rolepermission.java

来自「一个很好的开源项目管理系统源代码」· Java 代码 · 共 103 行

JAVA
103
字号
package net.java.workeffort.service.domain;import java.util.Date;/** * Role permission * @author Antony Joseph */public class RolePermission extends CollectionElement {    private String roleCd;    private String targetCd;    private String operationCd;    private Date lastModifiedTs;    private String lastModifiedBy;    private Integer level;        /**     * @return Returns the lastModifiedBy.     */    public String getLastModifiedBy() {        return lastModifiedBy;    }    /**     * @param lastModifiedBy The lastModifiedBy to set.     */    public void setLastModifiedBy(String lastModifiedBy) {        this.lastModifiedBy = lastModifiedBy;    }    /**     * @return Returns the lastModifiedTs.     */    public Date getLastModifiedTs() {        return lastModifiedTs;    }    /**     * @param lastModifiedTs The lastModifiedTs to set.     */    public void setLastModifiedTs(Date lastModifiedTs) {        this.lastModifiedTs = lastModifiedTs;    }    /**     * @return Returns the operationCd.     */    public String getOperationCd() {        return operationCd;    }    /**     * @param operationCd The operationCd to set.     */    public void setOperationCd(String operationCd) {        this.operationCd = operationCd;    }    /**     * @return Returns the roleCd.     */    public String getRoleCd() {        return roleCd;    }    /**     * @param roleCd The roleCd to set.     */    public void setRoleCd(String roleCd) {        this.roleCd = roleCd;    }    /**     * @return Returns the targetCd.     */    public String getTargetCd() {        return targetCd;    }    /**     * @param targetCd The targetCd to set.     */    public void setTargetCd(String targetCd) {        this.targetCd = targetCd;    }            /**     * @return Returns the level.     */    public Integer getLevel() {        return level;    }    /**     * @param level The level to set.     */    public void setLevel(Integer level) {        this.level = level;    }}

⌨️ 快捷键说明

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