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