zxl
1 天以前 3b0516a2959e25576e4f3fda697a3b025d06c8c9
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
31
32
33
34
35
36
37
38
39
40
package com.ycl.platform.domain.param.UY;
 
import lombok.Data;
import lombok.experimental.Accessors;
 
/**
 * 摄像头参数
 *
 * @author gonghl
 * @since 2024/7/1 下午 4:52
 */
 
@Data
@Accessors(chain = true)
public class ImageDetectionParam {
 
    /**
     * 分页
     */
    private Integer pageNum;
 
    private Integer pageSize;
 
    /**
     * 行政区域
     */
    private String arealayerno;
 
    /**
     * 异常类型
     */
    private String code = "1,2,3";
 
    /**
     * 状态:2全部  -1异常 1正常
     */
    private Integer status = 2;
 
 
}