using JT809.Protocol.JT809Attributes;
using JT809.Protocol.JT809Formatters.JT809SubMessageBodyFormatters;
using System;
using System.Collections.Generic;
using System.Text;
namespace JT809.Protocol.JT809SubMessageBody
{
///
/// 车辆拍照请求消息
/// 子业务类型标识:DOWN_CTRL_MSG_TAKE_PHOTO_REQ
/// 描述:上级平台向下级平台下发对某指定车辆的拍照请求消息
///
[JT809Formatter(typeof(JT809_0x9500_0x9502Formatter))]
public class JT809_0x9500_0x9502:JT809SubBodies
{
///
/// 镜头ID
///
public byte LensID { get; set; }
///
/// 图片大小
/// Ox01:320x240:
/// Ox02:640x480:
/// Ox03;:800x600:
/// Ox04:1024x768:
/// Ox05:176x 144[QCIF];
/// 0x06:704x288[CIF];
/// 0x07:704x288[HALF D];
/// Ox08:704576[DI]
///
public byte SizeType { get; set; }
}
}