//using System;
//using System.ComponentModel.DataAnnotations;
//namespace Bro.M071.Process.Model.Model
//{
// public class OperationRecords : BaseModel
// {
// ///
// /// 操作员编号
// ///
// [StringLength(64)]
// public string UserNO { get; set; }
// ///
// /// 操作员生产的批次号
// ///
// [StringLength(64)]
// public string ProductionBatchNO { get; set; }
// ///
// /// 操作开始时间
// ///
// public DateTime OperationStartTime { get; set; }
// ///
// /// 操作结束时间
// ///
// public DateTime? OperationEndTime { get; set; }
// }
// public class OperationRecordsRequest : BaseRequest
// {
// public string UserNO { get; set; }
// public string ProductionBatchNO { get; set; }
// }
// public class ProductionStatistics_Dto
// {
// public OperationRecords OperationRecordsRowData { get; set; }
// public int BatchProductionTotalCount { get; set; }
// public int BatchProductionOKCount { get; set; }
// public int BatchProductionNGCount { get; set; }
// public int BatchProductionTBDCount { get; set; }
// public bool IsSelected { get; set; }
// public ProductionStatistics_Dto()
// {
// }
// }
//}