📄 customoper.java
字号:
package com.business.vo;
/**
* @author Administrator
*
* To change this generated comment edit the template variable "typecomment":
* Window>Preferences>Java>Templates.
* To enable and disable the creation of type comments go to
* Window>Preferences>Java>Code Generation.
*/
public class CustomOper {
/** identifier field */
private String operId;
/** identifier field */
private String operName;
/** identifier field */
private String operAction;
/** identifier field */
private String operImage;
/** identifier field */
private String resId;
/** identifier field */
private String operLevel;
/**
* Returns the operAction.
* @return String
*/
public String getOperAction() {
return operAction;
}
/**
* Returns the operId.
* @return String
*/
public String getOperId() {
return operId;
}
/**
* Returns the operImage.
* @return String
*/
public String getOperImage() {
return operImage;
}
/**
* Returns the operName.
* @return String
*/
public String getOperName() {
return operName;
}
/**
* Returns the resId.
* @return String
*/
public String getResId() {
return resId;
}
/**
* Sets the operAction.
* @param operAction The operAction to set
*/
public void setOperAction(String operAction) {
this.operAction = operAction;
}
/**
* Sets the operId.
* @param operId The operId to set
*/
public void setOperId(String operId) {
this.operId = operId;
}
/**
* Sets the operImage.
* @param operImage The operImage to set
*/
public void setOperImage(String operImage) {
this.operImage = operImage;
}
/**
* Sets the operName.
* @param operName The operName to set
*/
public void setOperName(String operName) {
this.operName = operName;
}
/**
* Sets the resId.
* @param resId The resId to set
*/
public void setResId(String resId) {
this.resId = resId;
}
/**
* Returns the operLevel.
* @return String
*/
public String getOperLevel() {
return operLevel;
}
/**
* Sets the operLevel.
* @param operLevel The operLevel to set
*/
public void setOperLevel(String operLevel) {
this.operLevel = operLevel;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -