flowbranchmodel.java

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

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

public class FlowBranchModel
    implements java.io.Serializable {

    private String operation_code;
    private String operation_content;
    private String role_code;
    private String role_content;
    private String property_code;
    private String property_content;
    private String next_property;
    private String next_content;
    private String type;
    private String type_content;

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

    public String getOperationCode() {
        return operation_code;
    }

    public void setOperationContent(String value) {
        this.operation_content = value;
    }

    public String getOperationContent() {
        return operation_content;
    }

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

    public String getRoleCode() {
        return role_code;
    }

    public void setRoleContent(String value) {
        this.role_content = value;
    }

    public String getRoleContent() {
        return role_content;
    }

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

    public String getPropertyCode() {
        return property_code;
    }

    public void setPropertyContent(String value) {
        this.property_content = value;
    }

    public String getPropertyContent() {
        return property_content;
    }

    public void setNextProperty(String value) {
        this.next_property = value;
    }

    public String getNextProperty() {
        return next_property;
    }

    public void setNextContent(String value) {
        this.next_content = value;
    }

    public String getNextContent() {
        return next_content;
    }

    public void setType(String value) {
        this.type = value;
    }

    public String getType() {
        return type;
    }

    public void setTypeContent(String value) {
        this.type_content = value;
    }

    public String getTypeContent() {
        return type_content;
    }
}

⌨️ 快捷键说明

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