functionquerycriteria.java

来自「利用STRUTS2+SPRING+HIBERNATE/IBATIS建立的基本开发」· Java 代码 · 共 78 行

JAVA
78
字号
/**
 * 
 */
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 + =
减小字号Ctrl + -
显示快捷键?