TrailInfoDTO.java 699 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.welampiot.dto;
  2. import lombok.Data;
  3. import java.io.Serializable;
  4. /**
  5. * ClassName: TrailInfoDTO
  6. * Package: com.welampiot.dto
  7. * Description: 轨迹查找信息表
  8. *
  9. * @Author: zhj_Start
  10. * @Create: 2023/9/11 - 16:51
  11. * @Version: v1.0
  12. */
  13. @Data
  14. public class TrailInfoDTO implements Serializable {
  15. private static final long serialVersionUID = 1L;
  16. private Integer id;
  17. private Integer videoId;
  18. private Float smail; // 相似度
  19. private String image; // 相似人脸图片地址
  20. private String updateTime; // 更新时间
  21. private String location; // 路段名
  22. private String faceImage;
  23. private Integer isAuto;
  24. private String faceImage2;
  25. }