1234567891011121314151617181920212223242526272829303132333435363738 |
- using Ips.Library.Signals;
- using System;
- using System.Collections.Generic;
- using System.Runtime.Serialization;
- using System.Text;
- using System.Text.Json.Serialization;
- namespace Ips.Library.Entity
- {
- /// <summary>
- /// 采集结果
- /// </summary>
- [Serializable]
- public class AdcResult
- {
- /// <summary>
- /// 采集结果
- /// </summary>
- public AdcResult()
- {
- FileList = new List<SignalFile>();
- }
- public AdcResult(DateTime startTime, string storePath) : this()
- {
- StartTime = startTime;
- StorePath = storePath;
- }
- public DateTime StartTime { get; set; }
- public string StorePath { get; set; }
- /// <summary>
- /// 文件列表
- /// </summary>
- public List<SignalFile> FileList { get; set; }
- }
- }
|