AFN.cs 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using GWSocketClient.xml.dataItem;
  7. using GWSocketClient.xml.dataItem.data;
  8. namespace GWSocketClient.xml
  9. {
  10. class AFN
  11. {
  12. public int afn;
  13. public int respAfnId;
  14. public int cmdId;
  15. public int type;
  16. public int check;
  17. public int isPT;
  18. public int dir;
  19. public int ack;
  20. public int status;
  21. public int mq;
  22. public List<DataElementType> DataElement = new List<DataElementType>();
  23. public List<DataType2> data = new List<DataType2>();
  24. public override string ToString()
  25. {
  26. return "afn=" + afn +
  27. ",respAfnId=" + respAfnId +
  28. ",cmdId=" + cmdId +
  29. ",type=" + type +
  30. ",check=" + check +
  31. ",isPT=" + isPT +
  32. ",dir=" + dir +
  33. ",ack=" + ack +
  34. ",status=" + status +
  35. ",mq=" + mq +
  36. ",DataElement.Count=" + DataElement.Count +
  37. ",data.Count=" + data.Count;
  38. }
  39. }
  40. }