using System; namespace Model { public class GwDm { private string _messageId; private int _apId; private int _opId; private string _sourceId; private string _destnationId; private int _rdFlag; private int _msgFormat; private int _msgLength; private string _msgContent; public string OPMID { get { return this._messageId; } set { this._messageId = value; } } public int ApID { get { return this._apId; } set { this._apId = value; } } public int OpID { get { return this._opId; } set { this._opId = value; } } public string Mobile { get { return this._sourceId; } set { this._sourceId = value; } } public string AccessCode { get { return this._destnationId; } set { this._destnationId = value; } } public int RDFlag { get { return this._rdFlag; } set { this._rdFlag = value; } } public int MsgFormat { get { return this._msgFormat; } set { this._msgFormat = value; } } public int MsgLength { get { return this._msgLength; } set { this._msgLength = value; } } public string MsgContent { get { return this._msgContent; } set { this._msgContent = value; } } public DateTime DeliverTime { get; set; } public string SPID { get; set; } public string ClientID { get; set; } public string ExtNo { get; set; } } }