📄 admrolebuttonform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.oppo.elms.adm.form;
import com.oppo.elms.adm.model.TbAdmRolebutton;
import com.oppo.elms.adm.model.TbAdmRolebuttonId;
import com.oppo.framework.form.BaseForm;
/**
* MyEclipse Struts
* Creation date: 09-20-2006
*
* XDoclet definition:
* @struts.form name="admRoleButtonForm"
*/
@SuppressWarnings("serial")
public class AdmRoleButtonForm extends BaseForm {
private TbAdmRolebutton rolebutton = new TbAdmRolebutton(); // 角色按钮信息
private TbAdmRolebutton[] rolebuttonArray = new TbAdmRolebutton[0]; // 角色按钮数组
public boolean equals(Object obj) {
return rolebutton.equals(obj);
}
public TbAdmRolebuttonId getId() {
return rolebutton.getId();
}
public int hashCode() {
return rolebutton.hashCode();
}
public void setId(TbAdmRolebuttonId id) {
rolebutton.setId(id);
}
public String toString() {
return rolebutton.toString();
}
public TbAdmRolebutton getRolebutton() {
return rolebutton;
}
public void setRolebutton(TbAdmRolebutton rolebutton) {
this.rolebutton = rolebutton;
}
public TbAdmRolebutton[] getRolebuttonArray() {
return rolebuttonArray;
}
public void setRolebuttonArray(TbAdmRolebutton[] rolebuttonArray) {
this.rolebuttonArray = rolebuttonArray;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -