You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 line
703 B

  1. using JTNE.Protocol.Attributes;
  2. using JTNE.Protocol.Formatters.MessageBodyFormatters;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace JTNE.Protocol.MessageBody
  7. {
  8. /// <summary>
  9. /// 参数查询
  10. /// </summary>
  11. [JTNEFormatter(typeof(JTNE_0x80_Formatter))]
  12. public class JTNE_0x80 : JTNEBodies
  13. {
  14. /// <summary>
  15. /// 查询时间
  16. /// </summary>
  17. public DateTime QueryTime { get; set; }
  18. /// <summary>
  19. /// 参数总数
  20. /// </summary>
  21. public byte ParamNum { get; set; }
  22. /// <summary>
  23. /// 参数列表
  24. /// </summary>
  25. public byte[] ParamList { get; set; }
  26. }
  27. }