增加ID对应的名称显示

This commit is contained in:
wangxin
2018-02-25 18:39:26 +08:00
parent 39d999758a
commit 1c93923000

View File

@@ -53,6 +53,10 @@ public class BaseCfg<T> extends BaseEntity<T> {
* 创建人员 * 创建人员
*/ */
protected Long creatorId; protected Long creatorId;
/**
* 创建人员
*/
protected String creatorName;
/** /**
* 配置时间 * 配置时间
*/ */
@@ -61,6 +65,10 @@ public class BaseCfg<T> extends BaseEntity<T> {
* 修改人员 * 修改人员
*/ */
protected Long editorId; protected Long editorId;
/**
* 创建人员
*/
protected String editorName;
/** /**
* 修改时间 * 修改时间
*/ */
@@ -69,6 +77,10 @@ public class BaseCfg<T> extends BaseEntity<T> {
* 审核人员 * 审核人员
*/ */
protected Long auditorId; protected Long auditorId;
/**
* 审核人员
*/
protected String auditorName;
/** /**
* 审核时间 * 审核时间
*/ */
@@ -81,6 +93,10 @@ public class BaseCfg<T> extends BaseEntity<T> {
* 来函id * 来函id
*/ */
protected Integer requestId; protected Integer requestId;
/**
* 来函
*/
protected String requestName;
/** /**
* 编译id * 编译id
*/ */
@@ -101,6 +117,18 @@ public class BaseCfg<T> extends BaseEntity<T> {
* 标签 * 标签
*/ */
protected String lable; protected String lable;
/**
* 分类
*/
protected String classifyName;
/**
* 性质
*/
protected String attributeName;
/**
* 标签
*/
protected String lableName;
// protected Integer exprType =0; // protected Integer exprType =0;
// protected Integer matchMethod =0; // protected Integer matchMethod =0;
// protected Integer isHexbin =0; // protected Integer isHexbin =0;
@@ -393,4 +421,103 @@ public class BaseCfg<T> extends BaseEntity<T> {
protected void initDefaultValue(){ protected void initDefaultValue(){
} }
/**
* creatorName
* @return creatorName
*/
public String getCreatorName() {
return creatorName;
}
/**
* @param creatorName the creatorName to set
*/
public void setCreatorName(String creatorName) {
this.creatorName = creatorName;
}
/**
* editorName
* @return editorName
*/
public String getEditorName() {
return editorName;
}
/**
* @param editorName the editorName to set
*/
public void setEditorName(String editorName) {
this.editorName = editorName;
}
/**
* auditorName
* @return auditorName
*/
public String getAuditorName() {
return auditorName;
}
/**
* @param auditorName the auditorName to set
*/
public void setAuditorName(String auditorName) {
this.auditorName = auditorName;
}
/**
* classifyName
* @return classifyName
*/
public String getClassifyName() {
return classifyName;
}
/**
* @param classifyName the classifyName to set
*/
public void setClassifyName(String classifyName) {
this.classifyName = classifyName;
}
/**
* attributeName
* @return attributeName
*/
public String getAttributeName() {
return attributeName;
}
/**
* @param attributeName the attributeName to set
*/
public void setAttributeName(String attributeName) {
this.attributeName = attributeName;
}
/**
* lableName
* @return lableName
*/
public String getLableName() {
return lableName;
}
/**
* @param lableName the lableName to set
*/
public void setLableName(String lableName) {
this.lableName = lableName;
}
/**
* requestName
* @return requestName
*/
public String getRequestName() {
return requestName;
}
/**
* @param requestName the requestName to set
*/
public void setRequestName(String requestName) {
this.requestName = requestName;
}
} }