fuliqi
2024-12-07 f6593a5f6f1138abf09a0ee69fc5119fdce412c9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.ycl.platform.domain.vo;
 
import com.ycl.platform.domain.entity.WorkOrder;
import lombok.Data;
 
/**
 * 监测在线的线程返回对象
 *
 * @author:xp
 * @date:2024/9/10 11:44
 */
@Data
public class OnlineThreadVO {
 
    private Boolean online;
 
    private String ip;
 
    private WorkOrder workOrder;
    /** 当日监测次数 */
    private Integer checkCount;
    /** 当日离线 */
    private Integer offLineCount;
 
}