/// <summary>
 /// 全构造函数
 /// </summary>
 public SPRecordEntity(int id, string linkID, string mo, string mobile, string spNumber, string province, string city, string operatorType, DateTime createDate, bool isReport, bool isIntercept, bool isSycnToClient, bool isSycnSuccessed, bool isStatOK, int sycnRetryTimes, SPChannelEntity channelID, SPSClientEntity clientID, SPCodeEntity codeID, SPClientCodeRelationEntity clientCodeRelationID, decimal?price, int count)
 {
     _id                   = id;
     _linkID               = linkID;
     _mo                   = mo;
     _mobile               = mobile;
     _spNumber             = spNumber;
     _province             = province;
     _city                 = city;
     _operatorType         = operatorType;
     _createDate           = createDate;
     _isReport             = isReport;
     _isIntercept          = isIntercept;
     _isSycnToClient       = isSycnToClient;
     _isSycnSuccessed      = isSycnSuccessed;
     _isStatOK             = isStatOK;
     _sycnRetryTimes       = sycnRetryTimes;
     _channelID            = channelID;
     _clientID             = clientID;
     _codeID               = codeID;
     _clientCodeRelationID = clientCodeRelationID;
     _price                = price;
     _count                = count;
 }
 /// <summary>
 /// 默认构造函数
 /// </summary>
 public SPRecordEntity()
 {
     _id                   = 0;
     _linkID               = String.Empty;
     _mo                   = null;
     _mobile               = String.Empty;
     _spNumber             = null;
     _province             = String.Empty;
     _city                 = String.Empty;
     _operatorType         = String.Empty;
     _createDate           = DateTime.MinValue;
     _isReport             = false;
     _isIntercept          = false;
     _isSycnToClient       = false;
     _isSycnSuccessed      = false;
     _isStatOK             = false;
     _sycnRetryTimes       = 0;
     _channelID            = null;
     _clientID             = null;
     _codeID               = null;
     _clientCodeRelationID = null;
     _price                = null;
     _count                = 0;
 }