123456789101112131415161718192021222324252627282930313233343536 |
- package com.welampiot.dto;
- import lombok.Data;
- import java.io.Serializable;
- /**
- * ClassName: TrailInfoDTO
- * Package: com.welampiot.dto
- * Description: 轨迹查找信息表
- *
- * @Author: zhj_Start
- * @Create: 2023/9/11 - 16:51
- * @Version: v1.0
- */
- @Data
- public class TrailInfoDTO implements Serializable {
- private static final long serialVersionUID = 1L;
- private Integer id;
- private Integer videoId;
- private Float smail; // 相似度
- private String image; // 相似人脸图片地址
- private String updateTime; // 更新时间
- private String location; // 路段名
- private String faceImage;
- private Integer isAuto;
- private String faceImage2;
- }
|