using System; namespace Model { public class LgSmsMo { private int _ID; private string _SpID; private string _ClientID; private string _Mobile; private string _AccessCode; private string _MsgContent; private string _MsgForMat; private DateTime _DeliverTime; public int ID { get { return this._ID; } set { this._ID = value; } } public string SpID { get { return this._SpID; } set { this._SpID = value; } } public string ClientID { get { return this._ClientID; } set { this._ClientID = value; } } public string Mobile { get { return this._Mobile; } set { this._Mobile = value; } } public string AccessCode { get { return this._AccessCode; } set { this._AccessCode = value; } } public string MsgContent { get { return this._MsgContent; } set { this._MsgContent = value; } } public string MsgForMat { get { return this._MsgForMat; } set { this._MsgForMat = value; } } public DateTime DeliverTime { get { return this._DeliverTime; } set { this._DeliverTime = value; } } } }