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