1、策略模板、白名单增加display_id
2、所有对象的查询新增display_id字段
(cherry picked from commit b6061f58e1)
This commit is contained in:
@@ -77,6 +77,10 @@ public class Template {
|
||||
@Schema(description = "防御策略模板审核状态(0为未审核,1为已退回,2为审核通过)", example = "1", accessMode = Schema.AccessMode.READ_ONLY)
|
||||
private String auditStatus;
|
||||
|
||||
@JsonProperty("template_display_id")
|
||||
@Schema(description = "策略模板展示id", accessMode = Schema.AccessMode.READ_ONLY)
|
||||
private String templateDisplayId;
|
||||
|
||||
|
||||
/**
|
||||
* 设置是否含有日常/应急/紧急防护等级态字段的字段
|
||||
|
||||
@@ -61,4 +61,10 @@ public class WhiteListObject {
|
||||
@ExcelIgnore
|
||||
@Schema(description = "白名单对象审核状态(0为未审核,1为已退回,2为审核通过)", example = "2")
|
||||
private Integer whiteListAuditStatus;
|
||||
|
||||
@JsonProperty("white_list_display_id")
|
||||
@ExcelIgnore
|
||||
@Schema(description = "白名单展示id", example = "BMD-20200101-123456", accessMode = Schema.AccessMode.READ_ONLY)
|
||||
private String whiteListDisplayId;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user