bgp模块ip域配置提交
导出全部数据简单功能
This commit is contained in:
@@ -15,6 +15,7 @@ import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.google.gson.annotations.Expose;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import com.nis.domain.BaseEntity;
|
||||
import com.nis.util.excel.ExcelField;
|
||||
|
||||
/**
|
||||
* @ClassName: BaseConfig.java
|
||||
@@ -48,20 +49,24 @@ public class BaseCfg<T> extends BaseEntity<T> implements Cloneable{
|
||||
/**
|
||||
* 配置描述
|
||||
*/
|
||||
@ExcelField(title="config_describe")
|
||||
protected String cfgDesc;
|
||||
|
||||
/**
|
||||
* GK类型
|
||||
*/
|
||||
@ExcelField(title="action")
|
||||
protected Integer action;
|
||||
/**
|
||||
* 有效标识
|
||||
*/
|
||||
@ExcelField(title="valid_identifier")
|
||||
@Expose
|
||||
protected Integer isValid;
|
||||
/**
|
||||
* 是否审核
|
||||
*/
|
||||
@ExcelField(title="is_audit")
|
||||
protected Integer isAudit;
|
||||
/**
|
||||
* 创建人员
|
||||
@@ -70,10 +75,12 @@ public class BaseCfg<T> extends BaseEntity<T> implements Cloneable{
|
||||
/**
|
||||
* 创建人员
|
||||
*/
|
||||
@ExcelField(title="creator")
|
||||
protected String creatorName;
|
||||
/**
|
||||
* 配置时间
|
||||
*/
|
||||
@ExcelField(title="config_time")
|
||||
protected Date createTime;
|
||||
/**
|
||||
* 修改人员
|
||||
@@ -82,10 +89,12 @@ public class BaseCfg<T> extends BaseEntity<T> implements Cloneable{
|
||||
/**
|
||||
* 创建人员
|
||||
*/
|
||||
@ExcelField(title="editor")
|
||||
protected String editorName;
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
@ExcelField(title="edit_time")
|
||||
protected Date editTime;
|
||||
/**
|
||||
* 审核人员
|
||||
@@ -94,11 +103,13 @@ public class BaseCfg<T> extends BaseEntity<T> implements Cloneable{
|
||||
/**
|
||||
* 审核人员
|
||||
*/
|
||||
@ExcelField(title="auditor")
|
||||
protected String auditorName;
|
||||
/**
|
||||
* 审核时间
|
||||
*/
|
||||
@Expose
|
||||
@ExcelField(title="audit_time")
|
||||
@SerializedName("opTime")
|
||||
protected Date auditTime;
|
||||
/**
|
||||
@@ -114,22 +125,27 @@ public class BaseCfg<T> extends BaseEntity<T> implements Cloneable{
|
||||
/**
|
||||
* 来函
|
||||
*/
|
||||
@ExcelField(title="letter")
|
||||
protected String requestName;
|
||||
/**
|
||||
* 是否区域gk
|
||||
*/
|
||||
@ExcelField(title="whether_area_block")
|
||||
protected Integer isAreaEffective;
|
||||
/**
|
||||
* 分类
|
||||
*/
|
||||
@ExcelField(title="type")
|
||||
protected String classify;
|
||||
/**
|
||||
* 性质
|
||||
*/
|
||||
@ExcelField(title="attribute")
|
||||
protected String attribute;
|
||||
/**
|
||||
* 标签
|
||||
*/
|
||||
@ExcelField(title="label")
|
||||
protected String lable;
|
||||
/**
|
||||
* 分类
|
||||
|
||||
Reference in New Issue
Block a user