SendRecordQueryList.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace LYFZ.WinicSmsInterface
  7. {
  8. /// <summary>
  9. /// 发送记录查旬列表
  10. /// </summary>
  11. public class SendRecordQueryList
  12. {
  13. public SendRecordQueryList(string returnRecordStr)
  14. {
  15. this.SourceString = returnRecordStr;
  16. if (returnRecordStr != "")
  17. {
  18. string[] returnInfos = returnRecordStr.Split('|');
  19. foreach (string info in returnInfos)
  20. {
  21. SmsSenRecordQueryList.Add(new SmsWebServiceSendReturnInfo(info));
  22. }
  23. }
  24. }
  25. List<SmsWebServiceSendReturnInfo> _SmsSenRecordQueryList = new List<SmsWebServiceSendReturnInfo>();
  26. /// <summary>
  27. /// 短信发送记录列表
  28. /// </summary>
  29. public List<SmsWebServiceSendReturnInfo> SmsSenRecordQueryList
  30. {
  31. get { return _SmsSenRecordQueryList; }
  32. set { _SmsSenRecordQueryList = value; }
  33. }
  34. private string _SourceString = "";
  35. /// <summary>
  36. /// 源字符串
  37. /// </summary>
  38. public string SourceString
  39. {
  40. get { return _SourceString; }
  41. set { _SourceString = value; }
  42. }
  43. }
  44. }