123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- /// <summary>
- /// ReciveEntity 的摘要说明
- /// </summary>
- 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: 在此处添加构造函数逻辑
- //
-
- }
- }
|