📄 flowbranchmodel.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -