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;
|
|
|
}
|