| | |
| | | package com.ycl.platform.domain.result.UY; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ycl.platform.domain.result.BaseResult; |
| | | import lombok.Data; |
| | | import org.springframework.data.mongodb.core.index.TextIndexed; |
| | | import org.springframework.data.mongodb.core.mapping.Document; |
| | | |
| | | import java.util.Date; |
| | | |
| | |
| | | * @author gonghl |
| | | */ |
| | | @Data |
| | | public class RecordMetaDSumResult{ |
| | | @Document(collection = "uy_record_meta_d_sum") |
| | | public class RecordMetaDSumResult extends BaseResult { |
| | | |
| | | /** |
| | | * 行政区域名称 |
| | | */ |
| | | @TextIndexed |
| | | private String arealayername; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 创建时间,格式为日期时间字符串 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date createTime; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 摄像机名称 |
| | | */ |
| | | @TextIndexed |
| | | private String deviceName; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 国标平台ID |
| | | */ |
| | | @TextIndexed |
| | | private String platId; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 统计时间,格式为日期字符串 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date statTime; |
| | | |
| | | /** |