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
26
27
28
29
30
| package com.dy.pipIrrStatistics.intake.qo;
|
| import com.dy.common.webUtil.QueryConditionVo;
| import lombok.Data;
|
| /**
| * @author ZhuBaoMin
| * @date 2024-08-05 8:42
| * @LastEditTime 2024-08-05 8:42
| * @Description 信号强度查询对象
| */
|
| @Data
| public class SignalIntensityQO extends QueryConditionVo {
|
| /**
| * 信号强度:1-弱,2-一般,3-强
| */
| private Integer signalIntensity;
|
| /**
| * 弱信号最大值
| */
| private Integer weak;
|
| /**
| * 一般信号最大值
| */
| private Integer ordinary;
| }
|
|