/// <summary>
 /// 默认构造函数
 /// </summary>
 public SPMonitoringRequestEntity()
 {
     _id = 0;
     _recievedContent = null;
     _recievedDate    = null;
     _recievedIP      = null;
     _recievedSendUrl = null;
     _channelID       = null;
 }
 /// <summary>
 /// 全构造函数
 /// </summary>
 public SPMonitoringRequestEntity(int id, string recievedContent, DateTime?recievedDate, string recievedIP, string recievedSendUrl, SPChannelEntity channelID)
 {
     _id = id;
     _recievedContent = recievedContent;
     _recievedDate    = recievedDate;
     _recievedIP      = recievedIP;
     _recievedSendUrl = recievedSendUrl;
     _channelID       = channelID;
 }
 /// <summary>
 /// 全构造函数
 /// </summary>
 public SPDayReportEntity(int id, DateTime reportDate, int totalCount, int totalSuccessCount, int interceptCount, int downTotalCount, int downSycnSuccess, int downSycnFailed, int downNotSycn, SPSClientEntity clientID, SPChannelEntity channelID, SPCodeEntity codeID, SPUpperEntity uperID)
 {
     _id                = id;
     _reportDate        = reportDate;
     _totalCount        = totalCount;
     _totalSuccessCount = totalSuccessCount;
     _interceptCount    = interceptCount;
     _downTotalCount    = downTotalCount;
     _downSycnSuccess   = downSycnSuccess;
     _downSycnFailed    = downSycnFailed;
     _downNotSycn       = downNotSycn;
     _clientID          = clientID;
     _channelID         = channelID;
     _codeID            = codeID;
     _uperID            = uperID;
 }
 /// <summary>
 /// 默认构造函数
 /// </summary>
 public SPDayReportEntity()
 {
     _id                = 0;
     _reportDate        = DateTime.MinValue;
     _totalCount        = 0;
     _totalSuccessCount = 0;
     _interceptCount    = 0;
     _downTotalCount    = 0;
     _downSycnSuccess   = 0;
     _downSycnFailed    = 0;
     _downNotSycn       = 0;
     _clientID          = null;
     _channelID         = null;
     _codeID            = null;
     _uperID            = null;
 }
 /// <summary>
 /// 全构造函数
 /// </summary>
 public SPChannelSycnParamsEntity(int id, string name, string description, bool isEnable, SPChannelEntity channelID, string mappingParams, string title, string paramsValue, string paramsType, int?createBy, DateTime?createAt, int?lastModifyBy, DateTime?lastModifyAt, string lastModifyComment)
 {
     _id                = id;
     _name              = name;
     _description       = description;
     _isEnable          = isEnable;
     _channelID         = channelID;
     _mappingParams     = mappingParams;
     _title             = title;
     _paramsValue       = paramsValue;
     _paramsType        = paramsType;
     _createBy          = createBy;
     _createAt          = createAt;
     _lastModifyBy      = lastModifyBy;
     _lastModifyAt      = lastModifyAt;
     _lastModifyComment = lastModifyComment;
 }
 /// <summary>
 /// 默认构造函数
 /// </summary>
 public SPChannelSycnParamsEntity()
 {
     _id                = 0;
     _name              = String.Empty;
     _description       = String.Empty;
     _isEnable          = false;
     _channelID         = null;
     _mappingParams     = String.Empty;
     _title             = String.Empty;
     _paramsValue       = null;
     _paramsType        = String.Empty;
     _createBy          = null;
     _createAt          = null;
     _lastModifyBy      = null;
     _lastModifyAt      = null;
     _lastModifyComment = null;
 }
Пример #7
0
 /// <summary>
 /// 全构造函数
 /// </summary>
 public SPChannelParamsEntity(int id, string name, string description, bool isEnable, bool isRequired, string paramsType, SPChannelEntity channelID, string paramsMappingName, string title, bool showInClientGrid, string paramsValue, int?createBy, DateTime?createAt, int?lastModifyBy, DateTime?lastModifyAt, string lastModifyComment)
 {
     _id                = id;
     _name              = name;
     _description       = description;
     _isEnable          = isEnable;
     _isRequired        = isRequired;
     _paramsType        = paramsType;
     _channelID         = channelID;
     _paramsMappingName = paramsMappingName;
     _title             = title;
     _showInClientGrid  = showInClientGrid;
     _paramsValue       = paramsValue;
     _createBy          = createBy;
     _createAt          = createAt;
     _lastModifyBy      = lastModifyBy;
     _lastModifyAt      = lastModifyAt;
     _lastModifyComment = lastModifyComment;
 }
Пример #8
0
 /// <summary>
 /// 默认构造函数
 /// </summary>
 public SPChannelParamsEntity()
 {
     _id                = 0;
     _name              = String.Empty;
     _description       = String.Empty;
     _isEnable          = false;
     _isRequired        = false;
     _paramsType        = null;
     _channelID         = null;
     _paramsMappingName = String.Empty;
     _title             = String.Empty;
     _showInClientGrid  = true;
     _paramsValue       = null;
     _createBy          = null;
     _createAt          = null;
     _lastModifyBy      = null;
     _lastModifyAt      = null;
     _lastModifyComment = null;
 }
Пример #9
0
 /// <summary>
 /// 全构造函数
 /// </summary>
 public SPCodeEntity(int id, string name, string description, string code, string codeType, SPChannelEntity channelID, string mo, string mOType, int?mOLength, int orderIndex, string sPCode, string sPCodeType, int?sPCodeLength, bool hasFilters, bool hasParamsConvert, bool isDiable, decimal?price, string operationType, bool hasDayTotalLimit, int dayTotalLimitCount, bool hasPhoneLimit, bool?hasDayMonthLimit, int phoneLimitDayCount, int phoneLimitMonthCount, int phoneLimitType, bool?limitProvince, string limitProvinceArea, SPCodeEntity parentID, bool?isMatchCase, bool?isDayTimeLimit, DateTime?dayTimeLimitRangeStart, DateTime?dayTimeLimitRangeEnd, bool?dayTotalLimitInProvince, string dayTotalLimitInProvinceAssignedCount, string channelStatus, int?createBy, DateTime?createAt, int?lastModifyBy, DateTime?lastModifyAt, string lastModifyComment)
 {
     _id                      = id;
     _name                    = name;
     _description             = description;
     _code                    = code;
     _codeType                = codeType;
     _channelID               = channelID;
     _mo                      = mo;
     _mOType                  = mOType;
     _mOLength                = mOLength;
     _orderIndex              = orderIndex;
     _sPCode                  = sPCode;
     _sPCodeType              = sPCodeType;
     _sPCodeLength            = sPCodeLength;
     _hasFilters              = hasFilters;
     _hasParamsConvert        = hasParamsConvert;
     _isDiable                = isDiable;
     _price                   = price;
     _operationType           = operationType;
     _hasDayTotalLimit        = hasDayTotalLimit;
     _dayTotalLimitCount      = dayTotalLimitCount;
     _hasPhoneLimit           = hasPhoneLimit;
     _hasDayMonthLimit        = hasDayMonthLimit;
     _phoneLimitDayCount      = phoneLimitDayCount;
     _phoneLimitMonthCount    = phoneLimitMonthCount;
     _phoneLimitType          = phoneLimitType;
     _limitProvince           = limitProvince;
     _limitProvinceArea       = limitProvinceArea;
     _parentID                = parentID;
     _isMatchCase             = isMatchCase;
     _isDayTimeLimit          = isDayTimeLimit;
     _dayTimeLimitRangeStart  = dayTimeLimitRangeStart;
     _dayTimeLimitRangeEnd    = dayTimeLimitRangeEnd;
     _dayTotalLimitInProvince = dayTotalLimitInProvince;
     _dayTotalLimitInProvinceAssignedCount = dayTotalLimitInProvinceAssignedCount;
     _channelStatus     = channelStatus;
     _createBy          = createBy;
     _createAt          = createAt;
     _lastModifyBy      = lastModifyBy;
     _lastModifyAt      = lastModifyAt;
     _lastModifyComment = lastModifyComment;
 }
Пример #10
0
 /// <summary>
 /// 默认构造函数
 /// </summary>
 public SPCodeEntity()
 {
     _id                      = 0;
     _name                    = String.Empty;
     _description             = String.Empty;
     _code                    = String.Empty;
     _codeType                = null;
     _channelID               = null;
     _mo                      = String.Empty;
     _mOType                  = String.Empty;
     _mOLength                = null;
     _orderIndex              = 0;
     _sPCode                  = String.Empty;
     _sPCodeType              = null;
     _sPCodeLength            = null;
     _hasFilters              = false;
     _hasParamsConvert        = false;
     _isDiable                = false;
     _price                   = null;
     _operationType           = null;
     _hasDayTotalLimit        = false;
     _dayTotalLimitCount      = 0;
     _hasPhoneLimit           = false;
     _hasDayMonthLimit        = null;
     _phoneLimitDayCount      = 0;
     _phoneLimitMonthCount    = 0;
     _phoneLimitType          = 1;
     _limitProvince           = false;
     _limitProvinceArea       = null;
     _parentID                = null;
     _isMatchCase             = false;
     _isDayTimeLimit          = null;
     _dayTimeLimitRangeStart  = null;
     _dayTimeLimitRangeEnd    = null;
     _dayTotalLimitInProvince = null;
     _dayTotalLimitInProvinceAssignedCount = null;
     _channelStatus     = null;
     _createBy          = null;
     _createAt          = null;
     _lastModifyBy      = null;
     _lastModifyAt      = null;
     _lastModifyComment = null;
 }
 /// <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;
 }