userprivimodel.java

来自「一套完整的工商12315的源程序jsp部分在12315里,后台JAVA部分在gs」· Java 代码 · 共 74 行

JAVA
74
字号
package com.gs.component.sysadmin.model;

public class UserPriviModel
    implements java.io.Serializable {

    private String user_code; //用户编码
    private String operation_code; //功能点编码
    private String role_code; //角色编码
    private String property_code; //属性编码
    private int orderr; //流程顺序
    private int parallel; //并联审批

    public UserPriviModel() {
    }

    public UserPriviModel(String user_code, String operation_code,
                          String role_code,
                          String property_code, int orderr, int parallel) {
        this.user_code = user_code;
        this.operation_code = operation_code;
        this.role_code = role_code;
        this.property_code = property_code;
        this.orderr = orderr;
        this.parallel = parallel;
    }

    public String getUserCode() {
        return this.user_code;
    }

    public String getOperationCode() {
        return this.operation_code;
    }

    public String getRoleCode() {
        return this.role_code;
    }

    public String getPropertyCode() {
        return this.property_code;
    }

    public int getOrderr() {
        return this.orderr;
    }

    public int getParallel() {
        return this.parallel;
    }

    public void setUserCode(String user_code) {
        this.user_code = user_code;
    }

    public void setOperationCode(String operation_code) {
        this.operation_code = operation_code;
    }

    public void setRoleCode(String role_code) {
        this.role_code = role_code;
    }

    public void setPropertyCode(String property_code) {
        this.property_code = property_code;
    }

    public void setOrderr(int orderr) {
        this.orderr = orderr;
    }

    public void setParallel(int parallel) {
        this.parallel = parallel;
    }
}

⌨️ 快捷键说明

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