12345678910111213141516 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace VeederRoot_ATG_Console.MessageEntity.Outgoing
- {
- /// <summary>
- /// i|I101
- /// </summary>
- public class QuerySystemStatusReportRequest : OutgoingMessageBase
- {
- public QuerySystemStatusReportRequest(MessageFormat messageFormat)
- : base(messageFormat, FuncCode.QuerySystemStatusReport, "00")
- { }
- }
- }
|