邮件API

This commit is contained in:
2025-11-10 22:47:22 +08:00
parent e91e359041
commit b439a5f3f1
2 changed files with 15 additions and 1 deletions

View File

@@ -78,6 +78,12 @@ public class BizMonitorHost implements Serializable {
@TableField("location_name") @TableField("location_name")
private String locationName; private String locationName;
/**
* 地址类型
*/
@TableField("location_type")
private String locationType;
/** /**
* 管理人员 * 管理人员
*/ */
@@ -102,6 +108,12 @@ public class BizMonitorHost implements Serializable {
@TableField("update_time") @TableField("update_time")
private LocalDateTime updateTime; private LocalDateTime updateTime;
/**
* 失效日期
*/
@TableField("expiry_date")
private LocalDateTime expiryDate;
/** /**
* 租户id * 租户id
*/ */

View File

@@ -13,10 +13,12 @@
<result column="ustatus" property="ustatus" /> <result column="ustatus" property="ustatus" />
<result column="last_online_time" property="lastOnlineTime" /> <result column="last_online_time" property="lastOnlineTime" />
<result column="location_name" property="locationName" /> <result column="location_name" property="locationName" />
<result column="location_type" property="locationType" />
<result column="admin_user" property="adminUser" /> <result column="admin_user" property="adminUser" />
<result column="other_contact" property="otherContact" /> <result column="other_contact" property="otherContact" />
<result column="remark" property="remark" /> <result column="remark" property="remark" />
<result column="update_time" property="updateTime" /> <result column="update_time" property="updateTime" />
<result column="expiry_date" property="expiryDate" />
<result column="f_tenant_id" property="fTenantId" /> <result column="f_tenant_id" property="fTenantId" />
<result column="f_flow_id" property="fFlowId" /> <result column="f_flow_id" property="fFlowId" />
<result column="f_flow_task_id" property="fFlowTaskId" /> <result column="f_flow_task_id" property="fFlowTaskId" />
@@ -25,7 +27,7 @@
<!-- 通用查询结果列 --> <!-- 通用查询结果列 -->
<sql id="Base_Column_List"> <sql id="Base_Column_List">
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
</sql> </sql>
</mapper> </mapper>