No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

35 líneas
1.0 KiB

  1. using JT809.Protocol.JT809Attributes;
  2. using JT809.Protocol.JT809Formatters.JT809SubMessageBodyFormatters;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace JT809.Protocol.JT809SubMessageBody
  7. {
  8. /// <summary>
  9. /// 车辆拍照请求消息
  10. /// <para>子业务类型标识:DOWN_CTRL_MSG_TAKE_PHOTO_REQ</para>
  11. /// <para>描述:上级平台向下级平台下发对某指定车辆的拍照请求消息</para>
  12. /// </summary>
  13. [JT809Formatter(typeof(JT809_0x9500_0x9502Formatter))]
  14. public class JT809_0x9500_0x9502:JT809SubBodies
  15. {
  16. /// <summary>
  17. /// 镜头ID
  18. /// </summary>
  19. public byte LensID { get; set; }
  20. /// <summary>
  21. /// 图片大小
  22. /// Ox01:320x240:
  23. /// Ox02:640x480:
  24. /// Ox03;:800x600:
  25. /// Ox04:1024x768:
  26. /// Ox05:176x 144[QCIF];
  27. /// 0x06:704x288[CIF];
  28. /// 0x07:704x288[HALF D];
  29. /// Ox08:704576[DI]
  30. /// </summary>
  31. public byte SizeType { get; set; }
  32. }
  33. }