📄 crmaction.java
字号:
package com.csu.crm.common.vo;
/**
* CrmAction generated by MyEclipse Persistence Tools
*/
public class CrmAction implements java.io.Serializable {
// Fields
private String actionId;
private String tableName;
private String className;
private String pkName;
private String attrName;
private String formPath;
private String queryPath;
// Constructors
/** default constructor */
public CrmAction() {
}
/** full constructor */
public CrmAction(String tableName, String className, String pkName,
String attrName, String formPath, String queryPath) {
this.tableName = tableName;
this.className = className;
this.pkName = pkName;
this.attrName = attrName;
this.formPath = formPath;
this.queryPath = queryPath;
}
// Property accessors
public String getActionId() {
return this.actionId;
}
public void setActionId(String actionId) {
this.actionId = actionId;
}
public String getTableName() {
return this.tableName;
}
public void setTableName(String tableName) {
this.tableName = tableName;
}
public String getClassName() {
return this.className;
}
public void setClassName(String className) {
this.className = className;
}
public String getPkName() {
return this.pkName;
}
public void setPkName(String pkName) {
this.pkName = pkName;
}
public String getAttrName() {
return this.attrName;
}
public void setAttrName(String attrName) {
this.attrName = attrName;
}
public String getFormPath() {
return this.formPath;
}
public void setFormPath(String formPath) {
this.formPath = formPath;
}
public String getQueryPath() {
return this.queryPath;
}
public void setQueryPath(String queryPath) {
this.queryPath = queryPath;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -