diff --git a/src/main/java/com/nis/domain/configuration/BaseCfg.java b/src/main/java/com/nis/domain/configuration/BaseCfg.java index c99dd433c..5d3449edb 100644 --- a/src/main/java/com/nis/domain/configuration/BaseCfg.java +++ b/src/main/java/com/nis/domain/configuration/BaseCfg.java @@ -53,6 +53,10 @@ public class BaseCfg extends BaseEntity { * 创建人员 */ protected Long creatorId; + /** + * 创建人员 + */ + protected String creatorName; /** * 配置时间 */ @@ -61,6 +65,10 @@ public class BaseCfg extends BaseEntity { * 修改人员 */ protected Long editorId; + /** + * 创建人员 + */ + protected String editorName; /** * 修改时间 */ @@ -69,6 +77,10 @@ public class BaseCfg extends BaseEntity { * 审核人员 */ protected Long auditorId; + /** + * 审核人员 + */ + protected String auditorName; /** * 审核时间 */ @@ -81,6 +93,10 @@ public class BaseCfg extends BaseEntity { * 来函id */ protected Integer requestId; + /** + * 来函 + */ + protected String requestName; /** * 编译id */ @@ -101,6 +117,18 @@ public class BaseCfg extends BaseEntity { * 标签 */ protected String lable; + /** + * 分类 + */ + protected String classifyName; + /** + * 性质 + */ + protected String attributeName; + /** + * 标签 + */ + protected String lableName; // protected Integer exprType =0; // protected Integer matchMethod =0; // protected Integer isHexbin =0; @@ -393,4 +421,103 @@ public class BaseCfg extends BaseEntity { 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; + } + }