fuliqi
2024-11-19 3380b0f6767308fa91bd55d68a96a48be5029aa7
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;
 
}