AdcResult.cs 869 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using Ips.Library.Signals;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Runtime.Serialization;
  5. using System.Text;
  6. using System.Text.Json.Serialization;
  7. namespace Ips.Library.Entity
  8. {
  9. /// <summary>
  10. /// 采集结果
  11. /// </summary>
  12. [Serializable]
  13. public class AdcResult
  14. {
  15. /// <summary>
  16. /// 采集结果
  17. /// </summary>
  18. public AdcResult()
  19. {
  20. FileList = new List<SignalFile>();
  21. }
  22. public AdcResult(DateTime startTime, string storePath) : this()
  23. {
  24. StartTime = startTime;
  25. StorePath = storePath;
  26. }
  27. public DateTime StartTime { get; set; }
  28. public string StorePath { get; set; }
  29. /// <summary>
  30. /// 文件列表
  31. /// </summary>
  32. public List<SignalFile> FileList { get; set; }
  33. }
  34. }