| 12345678910111213141516171819202122232425262728293031323334353637 |
- package com.welampiot.dto;
- import lombok.Data;
- import java.io.Serializable;
- /**
- * ClassName: VideoEventInfoLogDTO
- * Package: com.welampiot.dto
- * Description:
- *
- * @Author: zhj_Start
- * @Create: 2023/9/14 - 9:46
- * @Version: v1.0
- */
- @Data
- public class VideoEventInfoLogDTO implements Serializable {
- private static final long serialVersionUID = 1L;
- private Integer id;
- private Integer lampPoleId;
- private String videoMac; // 灯杆摄像头mac地址
- private String address;
- private String messageType; // 说明类型
- private String messageInfo; // 说明描述
- private String updateTime; // 事件时间
- private String eventType; // 事件类型
- private String imgUrl; // 事件图片地址
- }
|