namespace CncModels.Dto.CollectLog { /// /// 采集分析详情(基于 CollectAnalysisListItem 的扩展字段) /// public class CollectAnalysisDetail : CollectAnalysisListItem { public decimal? PreviousPartCount { get; set; } public decimal? CurrentPartCount { get; set; } public string PreviousStatus { get; set; } public string CurrentStatus { get; set; } public string AnalysisDetail { get; set; } public long RawLogId { get; set; } } }