package com.tievd.jyz.entity.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* <p>
|
* 加油事件表
|
* </p>
|
*
|
* @author
|
* @since 2023-02-24
|
*/
|
@Data
|
@Accessors(chain = true)
|
@Schema(name = "告警、事件筛选")
|
public class EventReqVo implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@Schema(description = "车牌号")
|
private String licenseNum;
|
|
@Schema(description = "算法类型code")
|
private String algorithmCode;
|
|
@Schema(description = "视频设备code")
|
private String cameraCode;
|
|
@Schema(description = "机构代码")
|
private String orgCode;
|
|
@Schema(description = "审核结果1属实,2误报")
|
private Byte auditResult;
|
|
@Schema(description = "是否已审核 0未处理 1已处理")
|
private Byte audited;
|
|
@Schema(description = "查询开始时间")
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
private Date startTime;
|
|
@Schema(description = "查询结束时间")
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
private Date endTime;
|
|
}
|