roleprivilegeform.java

来自「基于jsp+sevlet的部分权限控制」· Java 代码 · 共 58 行

JAVA
58
字号
/**
 * 2007-8-22
 * RolePrivilegeForm.java
 * RolePrivilegeForm
 */
package com.qrsx.appcam.form;

import org.apache.struts.action.ActionForm;

/**
 * @author 张清华
 * RolePrivilegeForm.java
 */
public class RolePrivilegeForm extends ActionForm{
	
	private String  id;
	private String roleId;
	private Integer[] privilegeIds=new Integer[]{};
	/**
	 * @return the id
	 */
	public String getId() {
		return id;
	}
	/**
	 * @param id the id to set
	 */
	public void setId(String id) {
		this.id = id;
	}
	/**
	 * @return the privilegeIds
	 */
	public Integer[] getPrivilegeIds() {
		return privilegeIds;
	}
	/**
	 * @param privilegeIds the privilegeIds to set
	 */
	public void setPrivilegeIds(Integer[] privilegeIds) {
		this.privilegeIds = privilegeIds;
	}
	/**
	 * @return the roleId
	 */
	public String getRoleId() {
		return roleId;
	}
	/**
	 * @param roleId the roleId to set
	 */
	public void setRoleId(String roleId) {
		this.roleId = roleId;
	}

	
}

⌨️ 快捷键说明

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