万佳安设备数据
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 line
1.2KB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace TelpoPush.WanJiaAn.Worker.Models.MqTemplates
  7. {
  8. public class MqAlarmEventTemplate
  9. {
  10. public AlarmEvent alarm_event { get; set; }
  11. }
  12. public class AlarmEvent
  13. {
  14. public string event_id { get; set; } //事件唯一ID,用于区分不同事件。每次均上报
  15. public string event_start { get; set; }//事件开始时间,秒级时间戳。每次均上报
  16. public string event_end { get; set; } //事件结束时间,秒级时间戳。每次均上报,event_type=2时值为””(空串)
  17. public int event_type { get; set; } //2:哭声检测;52:遮脸提醒
  18. public string image { get; set; } //事件图片URL地址。event_type=3时上报
  19. public int report_type { get; set; } //1:事件开始,2:事件结束,3:资源上报(图片或者图片+视频)
  20. public string url { get; set; }//视频首片URL地址。event_type=3时上报
  21. public string video_start { get; set; } //视频开始时间, 秒级时间戳。event_type=3时上报
  22. public string video_end { get; set; }//视频结束时间, 秒级时间戳。event_type=3时上报
  23. }
  24. }