📄 functionquerycriteria.java
字号:
/**
*
*/
package com.sunwah.baseapp.system.criteria;
import com.sunwah.baseapp.common.QueryCriteria;
/**
* @author MARK
*
*/
public class FunctionQueryCriteria implements QueryCriteria {
private String functionName;
private String functionType;
private String state;
private String functionLevel;
private Long parentFuncId;
private Long userId;
private Long roleId;
public String getFunctionName() {
return functionName;
}
public void setFunctionName(String functionName) {
this.functionName = functionName;
}
public String getFunctionType() {
return functionType;
}
public void setFunctionType(String functionType) {
this.functionType = functionType;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public String getFunctionLevel() {
return functionLevel;
}
public void setFunctionLevel(String functionLevel) {
this.functionLevel = functionLevel;
}
public Long getParentFuncId() {
return parentFuncId;
}
public void setParentFuncId(Long parentFuncId) {
this.parentFuncId = parentFuncId;
}
public Long getUserId() {
return userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
public Long getRoleId() {
return roleId;
}
public void setRoleId(Long roleId) {
this.roleId = roleId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -