using System; namespace Model { public class GwSmsTask { private int _TaskID; private string _ClientID; private string _SpID; private int _ApID; private DateTime _CreateTime; private DateTime _HandleTime; private DateTime _AtTime; private string _ConTent; private string _MobileList; private string _AccessCode; private int _TotalCount; private int _HandledCount; private int _Status; private string _StaTusText; public int TaskID { get { return this._TaskID; } set { this._TaskID = value; } } public string ClientID { get { return this._ClientID; } set { this._ClientID = value; } } public string SpID { get { return this._SpID; } set { this._SpID = value; } } public int ApID { get { return this._ApID; } set { this._ApID = value; } } public DateTime CreateTime { get { return this._CreateTime; } set { this._CreateTime = value; } } public DateTime HandleTime { get { return this._HandleTime; } set { this._HandleTime = value; } } public DateTime AtTime { get { return this._AtTime; } set { this._AtTime = value; } } public string ConTent { get { return this._ConTent; } set { this._ConTent = value; } } public string MobileList { get { return this._MobileList; } set { this._MobileList = value; } } public string AccessCode { get { return this._AccessCode; } set { this._AccessCode = value; } } public int TotalCount { get { return this._TotalCount; } set { this._TotalCount = value; } } public int HandledCount { get { return this._HandledCount; } set { this._HandledCount = value; } } public int Status { get { return this._Status; } set { this._Status = value; } } public string StaTusText { get { return this._StaTusText; } set { this._StaTusText = value; } } } }