using System; namespace YTSoft.BaseCallCenter.Model { /// /// T_SMS_SendSMSTask:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_SMS_SendSMSTask { public T_SMS_SendSMSTask() {} #region Model private int _smsid; private string _telnum; private string _content; private DateTime _committime; private int _state; private DateTime? _sendtime; private DateTime? _lastsenttime; private int _cursentcount; private int _maxsendcount; private string _info; private int? _f_userid; private int? _f_customerid; private string _f_name; /// /// /// public int SMSID { set{ _smsid=value;} get{return _smsid;} } /// /// /// public string TelNum { set{ _telnum=value;} get{return _telnum;} } /// /// /// public string Content { set{ _content=value;} get{return _content;} } /// /// /// public DateTime CommitTime { set{ _committime=value;} get{return _committime;} } /// /// /// public int State { set{ _state=value;} get{return _state;} } /// /// /// public DateTime? SendTime { set{ _sendtime=value;} get{return _sendtime;} } /// /// /// public DateTime? LastSentTime { set{ _lastsenttime=value;} get{return _lastsenttime;} } /// /// /// public int CurSentCount { set{ _cursentcount=value;} get{return _cursentcount;} } /// /// /// public int MaxSendCount { set{ _maxsendcount=value;} get{return _maxsendcount;} } /// /// /// public string Info { set{ _info=value;} get{return _info;} } /// /// /// public int? F_UserID { set{ _f_userid=value;} get{return _f_userid;} } /// /// /// public int? F_CustomerID { set{ _f_customerid=value;} get{return _f_customerid;} } /// /// /// public string F_Name { set{ _f_name=value;} get{return _f_name;} } #endregion Model } }