#
luxiaotao1123
2022-03-01 ea696b3231e3465c9ac4eb9603acc18e878ccf96
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.zy.sc.manager.entity.param.open;
 
import lombok.Data;
 
/**
 * Created by vincent on 2021/12/15
 */
@Data
public class OpenSensorParam {
 
    private Long hostId;
 
    private String sensorTypeFlag;
 
    private Long startTime;
 
    private Long endTime;
 
}