📄 action.java
字号:
package com.wxd.common.popedom.persistence.entity;
import com.wxd.common.popedom.persistence.entity.base.BaseAction;
public class Action extends BaseAction {
private static final long serialVersionUID = 1L;
/*[CONSTRUCTOR MARKER BEGIN]*/
public Action () {
super();
}
/**
* Constructor for primary key
*/
public Action (java.lang.Integer id) {
super(id);
}
/**
* Constructor for required fields
*/
public Action (
java.lang.Integer id,
com.wxd.common.popedom.persistence.entity.Module module,
java.lang.String actionId,
java.lang.String actionView,
java.lang.String actionPriority) {
super (
id,
module,
actionId,
actionView,
actionPriority);
}
/*[CONSTRUCTOR MARKER END]*/
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -