resprivilege.java

来自「java实现的可配置的工作流引擎,采用jsp+javabean实现」· Java 代码 · 共 27 行

JAVA
27
字号
package com.hongsoft.res.pojo;

public class ResPrivilege {
    private long resID;
    private long id;
    private int type;
    
   
    public long getResID() {
        return resID;
    }
    public void setResID(long resID) {
        this.resID= resID;
    }
    public long getId() {
        return id;
    }
    public void setId(long id) {
        this.id= id;
    }    
    public void setType(int type) {
        this.type= type;
    }
    public int getType() {
        return type;
    }
}

⌨️ 快捷键说明

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