12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace LYFZ.WinicSmsInterface
- {
- /// <summary>
- /// 发送记录查旬列表
- /// </summary>
- public class SendRecordQueryList
- {
- public SendRecordQueryList(string returnRecordStr)
- {
- this.SourceString = returnRecordStr;
- if (returnRecordStr != "")
- {
- string[] returnInfos = returnRecordStr.Split('|');
- foreach (string info in returnInfos)
- {
- SmsSenRecordQueryList.Add(new SmsWebServiceSendReturnInfo(info));
- }
- }
- }
- List<SmsWebServiceSendReturnInfo> _SmsSenRecordQueryList = new List<SmsWebServiceSendReturnInfo>();
- /// <summary>
- /// 短信发送记录列表
- /// </summary>
- public List<SmsWebServiceSendReturnInfo> SmsSenRecordQueryList
- {
- get { return _SmsSenRecordQueryList; }
- set { _SmsSenRecordQueryList = value; }
- }
- private string _SourceString = "";
- /// <summary>
- /// 源字符串
- /// </summary>
- public string SourceString
- {
- get { return _SourceString; }
- set { _SourceString = value; }
- }
- }
- }
|