🔨 修改文案.
This commit is contained in:
@@ -29,6 +29,7 @@ import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 主机探针状态 视图响应对象
|
||||
@@ -61,4 +62,7 @@ public class HostAgentStatusVO implements Serializable {
|
||||
@Schema(description = "探针在线状态")
|
||||
private Integer agentOnlineStatus;
|
||||
|
||||
@Schema(description = "探针切换在线状态时间")
|
||||
private Date agentOnlineChangeTime;
|
||||
|
||||
}
|
||||
|
||||
@@ -119,7 +119,8 @@ public class HostAgentServiceImpl implements HostAgentService {
|
||||
.select(HostDO::getId,
|
||||
HostDO::getAgentVersion,
|
||||
HostDO::getAgentInstallStatus,
|
||||
HostDO::getAgentOnlineStatus)
|
||||
HostDO::getAgentOnlineStatus,
|
||||
HostDO::getAgentOnlineChangeTime)
|
||||
.in(HostDO::getId, idList)
|
||||
.then()
|
||||
.stream()
|
||||
|
||||
Reference in New Issue
Block a user