From b439a5f3f14963d8b46d0835e3fdf546e88f9847 Mon Sep 17 00:00:00 2001 From: gaoxq <376340421@qq.com> Date: Mon, 10 Nov 2025 22:47:22 +0800 Subject: [PATCH] =?UTF-8?q?=E9=82=AE=E4=BB=B6API?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/mini/capi/biz/domain/BizMonitorHost.java | 12 ++++++++++++ src/main/resources/mapper/BizMonitorHostMapper.xml | 4 +++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/mini/capi/biz/domain/BizMonitorHost.java b/src/main/java/com/mini/capi/biz/domain/BizMonitorHost.java index 9d790e1..b92cc23 100644 --- a/src/main/java/com/mini/capi/biz/domain/BizMonitorHost.java +++ b/src/main/java/com/mini/capi/biz/domain/BizMonitorHost.java @@ -78,6 +78,12 @@ public class BizMonitorHost implements Serializable { @TableField("location_name") private String locationName; + /** + * 地址类型 + */ + @TableField("location_type") + private String locationType; + /** * 管理人员 */ @@ -102,6 +108,12 @@ public class BizMonitorHost implements Serializable { @TableField("update_time") private LocalDateTime updateTime; + /** + * 失效日期 + */ + @TableField("expiry_date") + private LocalDateTime expiryDate; + /** * 租户id */ diff --git a/src/main/resources/mapper/BizMonitorHostMapper.xml b/src/main/resources/mapper/BizMonitorHostMapper.xml index fc7362a..5e0f55e 100644 --- a/src/main/resources/mapper/BizMonitorHostMapper.xml +++ b/src/main/resources/mapper/BizMonitorHostMapper.xml @@ -13,10 +13,12 @@ + + @@ -25,7 +27,7 @@ - create_time, host_id, hostname, ip_address, host_type, host_os, ustatus, last_online_time, location_name, admin_user, other_contact, remark, update_time, f_tenant_id, f_flow_id, f_flow_task_id, f_flow_state + create_time, host_id, hostname, ip_address, host_type, host_os, ustatus, last_online_time, location_name, location_type, admin_user, other_contact, remark, update_time, expiry_date, f_tenant_id, f_flow_id, f_flow_task_id, f_flow_state