using JTNE.Protocol.Attributes;
using JTNE.Protocol.Formatters.MessageBodyFormatters;
using System;
using System.Collections.Generic;
using System.Text;
namespace JTNE.Protocol.MessageBody
{
///
/// 参数查询
///
[JTNEFormatter(typeof(JTNE_0x80_Formatter))]
public class JTNE_0x80 : JTNEBodies
{
///
/// 查询时间
///
public DateTime QueryTime { get; set; }
///
/// 参数总数
///
public byte ParamNum { get; set; }
///
/// 参数列表
///
public byte[] ParamList { get; set; }
}
}