using System; using System.Collections.Generic; using System.Linq; using System.Web; /// /// ReciveEntity 的摘要说明 /// public class ReciveEntity { public int SeqNo { get; set; } public string SourceID { get; set; } public string MsgConID { get; set; } public string MsgHeader { get; set; } public string MsgContent { get; set; } public string ReplyMsg { get; set; } public DateTime ReceivingTime { get; set; } public string IP { get; set; } public int TaskStatus { get; set; } public DateTime StartTime { get; set; } public DateTime EndTime { get; set; } public string TaskIP { get; set; } public string TaskMac { get; set; } public string TaskMsg { get; set; } public string MessageID { get; set; } public string MessageType { get; set; } public string Remark { get; set; } public int Sequeue { get; set; } public int ErrNum { get; set; } public ReciveEntity() { // // TODO: 在此处添加构造函数逻辑 // } }