|
//using System;
|
//using System.ComponentModel.DataAnnotations;
|
|
//namespace Bro.M071.Model.Model
|
//{
|
// public class OperationRecords : BaseModel
|
// {
|
// /// <summary>
|
// /// 操作员编号
|
// /// </summary>
|
// [StringLength(64)]
|
// public string UserNO { get; set; }
|
|
// /// <summary>
|
// /// 操作员生产的批次号
|
// /// </summary>
|
// [StringLength(64)]
|
// public string ProductionBatchNO { get; set; }
|
|
// /// <summary>
|
// /// 操作开始时间
|
// /// </summary>
|
// public DateTime OperationStartTime { get; set; }
|
|
// /// <summary>
|
// /// 操作结束时间
|
// /// </summary>
|
// 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()
|
// {
|
|
// }
|
// }
|
//}
|