Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- using JT808.Protocol.Interfaces;
- using JT808.Protocol.MessagePack;
- using System;
- using System.Collections.Generic;
- using System.Text;
-
- namespace JT808.Protocol
- {
- /// <summary>
- /// 记录仪上行数据体
- /// </summary>
- public abstract class JT808CarDVRUpBodies: IJT808Description
- {
- /// <summary>
- /// 命令字
- /// </summary>
- public abstract byte CommandId { get; }
- /// <summary>
- /// 跳过数据体序列化
- /// 默认不跳过
- /// 当数据体为空的时候,使用null作为空包感觉不适合,所以就算使用空包也需要new一下来表达意思。
- /// </summary>
- public virtual bool SkipSerialization { get; set; } = false;
- /// <summary>
- /// 消息描述
- /// </summary>
- public abstract string Description { get; }
- }
- }
|