ReciveEntity.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. /// <summary>
  6. /// ReciveEntity 的摘要说明
  7. /// </summary>
  8. public class ReciveEntity
  9. {
  10. public int SeqNo
  11. {
  12. get;
  13. set;
  14. }
  15. public string SourceID
  16. {
  17. get;
  18. set;
  19. }
  20. public string MsgConID
  21. {
  22. get;
  23. set;
  24. }
  25. public string MsgHeader
  26. {
  27. get;
  28. set;
  29. }
  30. public string MsgContent
  31. {
  32. get;
  33. set;
  34. }
  35. public string ReplyMsg
  36. {
  37. get;
  38. set;
  39. }
  40. public DateTime ReceivingTime
  41. {
  42. get;
  43. set;
  44. }
  45. public string IP
  46. {
  47. get;
  48. set;
  49. }
  50. public int TaskStatus
  51. {
  52. get;
  53. set;
  54. }
  55. public DateTime StartTime
  56. {
  57. get;
  58. set;
  59. }
  60. public DateTime EndTime
  61. {
  62. get;
  63. set;
  64. }
  65. public string TaskIP
  66. {
  67. get;
  68. set;
  69. }
  70. public string TaskMac
  71. {
  72. get;
  73. set;
  74. }
  75. public string TaskMsg
  76. {
  77. get;
  78. set;
  79. }
  80. public string MessageID
  81. {
  82. get;
  83. set;
  84. }
  85. public string MessageType
  86. {
  87. get;
  88. set;
  89. }
  90. public string Remark
  91. {
  92. get;
  93. set;
  94. }
  95. public int Sequeue
  96. {
  97. get;
  98. set;
  99. }
  100. public int ErrNum
  101. {
  102. get;
  103. set;
  104. }
  105. public ReciveEntity()
  106. {
  107. //
  108. // TODO: 在此处添加构造函数逻辑
  109. //
  110. }
  111. }