You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
538 B
C#
16 lines
538 B
C#
namespace CncModels.Dto.CollectLog
|
|
{
|
|
/// <summary>
|
|
/// 采集分析详情(基于 CollectAnalysisListItem 的扩展字段)
|
|
/// </summary>
|
|
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; }
|
|
}
|
|
}
|