diff --git a/web-api/src/main/java/com/jeesite/modules/biz/entity/BizMonitorHost.java b/web-api/src/main/java/com/jeesite/modules/biz/entity/BizMonitorHost.java index 982d4de8..b381c634 100644 --- a/web-api/src/main/java/com/jeesite/modules/biz/entity/BizMonitorHost.java +++ b/web-api/src/main/java/com/jeesite/modules/biz/entity/BizMonitorHost.java @@ -45,6 +45,10 @@ import java.io.Serial; @Column(name = "remark", attrName = "remark", label = "备注信息", queryType = QueryType.LIKE), @Column(name = "update_time", attrName = "updateTime", label = "更新时间", isQuery = false, isUpdateForce = true), @Column(name = "expiry_date", attrName = "expiryDate", label = "失效日期", isQuery = false), + @Column(name = "is_auth", attrName = "isAuth", label = "是否认证"), + @Column(name = "run_target_nums", attrName = "runTargetNums", label = "运行数量"), + @Column(name = "check_target_nums", attrName = "checkTargetNums", label = "监控数量"), + @Column(name = "check_target_port", attrName = "checkTargetPort", label = "监控端口"), @Column(name = "f_tenant_id", attrName = "ftenantId", label = "租户id", isUpdate = false, isQuery = false), @Column(name = "f_flow_id", attrName = "fflowId", label = "流程id", isUpdate = false, isQuery = false), @Column(name = "f_flow_task_id", attrName = "fflowTaskId", label = "流程任务主键", isUpdate = false, isQuery = false), @@ -78,6 +82,10 @@ public class BizMonitorHost extends DataEntity implements Serial private String remark; // 备注信息 private Date updateTime; // 更新时间 private Date expiryDate; // 失效日期 + private String isAuth; + private Integer runTargetNums; + private Integer checkTargetNums; + private Integer checkTargetPort; private String ftenantId; // 租户id private String fflowId; // 流程id private String fflowTaskId; // 流程任务主键