package com.ycl.platform.domain.result.UY;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ycl.platform.domain.result.BaseResult;
|
import io.swagger.models.auth.In;
|
import lombok.Data;
|
import org.springframework.data.mongodb.core.index.TextIndexed;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* 视频标注数据传输对象
|
*
|
* @author gonghl
|
* @since 2024-4-19 11:52:09
|
*/
|
@Data
|
@Document(collection = "uy_osd_monitor")
|
public class OsdMonitorResult extends BaseResult {
|
|
private Integer areaInfoFormat;
|
|
/**
|
* 辖区信息
|
*/
|
private String areaInfoMessage;
|
|
/**
|
* 行政区域
|
*/
|
private String arealayername;
|
|
|
private String arealayerno;
|
|
|
private Integer audited;
|
|
/**
|
* 审核时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date auditedTime;
|
|
|
private Integer cameraInfoFormat;
|
|
/**
|
* 摄像机信息
|
*/
|
private String cameraInfoMessage;
|
|
/**
|
* 设备ID
|
*/
|
private String deviceId;
|
|
/**
|
* 设备名称
|
*/
|
private String deviceName;
|
|
/**
|
* ip地址
|
*/
|
private String ip;
|
|
|
private Integer locationInfoFormat;
|
|
/**
|
* 地点信息
|
*/
|
private String locationInfoMessage;
|
|
/**
|
* ocr信息
|
*/
|
private String ocrMessage;
|
|
/**
|
* ocr状态
|
*/
|
private Integer ocrStatus;
|
|
/**
|
* ocr识别时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date ocrTime;
|
|
private Integer timeInfoFormat;
|
|
/**
|
* 时间信息
|
*/
|
private Integer timeInfoMessage;
|
|
}
|