using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model { /// /// 客户监测对接模型 /// public class MonitorDataDockingCorpRecord { /// /// /// public MonitorDataDockingCorpRecord() { } /// /// /// public MonitorDataDockingCorpRecord(long CorpID,long ConfigureID, IEnumerable list) { this.CorpID = CorpID; this.ConfigureID = ConfigureID; this.Records = list?.ToList(); } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 配置标识 /// public long ConfigureID { get; set; } /// /// 记录列表 /// public List Records { get; set; } } }