1、策略模板、白名单增加display_id

2、所有对象的查询新增display_id字段

(cherry picked from commit b6061f58e1)
This commit is contained in:
PushM
2024-05-08 10:41:47 +08:00
parent 7f078a81fd
commit 1b7460be64
11 changed files with 65 additions and 10 deletions

View File

@@ -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;
/**
* 设置是否含有日常/应急/紧急防护等级态字段的字段

View File

@@ -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;
}