using JiShe.CollectBus.Common; using System; using System.Collections.Generic; using System.Runtime.CompilerServices; namespace JiShe.CollectBus.Protocol.Contracts.Models { //TODO public class CommandReulstMsg { //Code //Msg //CommandReulst } public class CommandReulst { public int CmdLength { get; set; } [Required(true)] public string A { get; set; } public int MSA { get; set; } public AFN AFN { get; set; } [Required(true)] public Seq Seq { get; set; } public int Pn { get; set; } public int Fn { get; set; } /// /// 数据报文 /// public List? HexDatas { get; set; } /// /// 数据体 /// public string? JsonData { get; set; } /// /// 响应下发的数据报文 /// public byte[]? ReplyBytes { get; set; } } public class Seq { public TpV TpV { get; set; } public FIRFIN FIRFIN { get; set; } public CON CON { get; set; } public int PRSEQ { get; set; } } }