using System; using System.ComponentModel.DataAnnotations; using static Bro.Common.Helper.EnumHelper; namespace Bro.M071.Model.Model { /// /// 产品测量记录 /// public class ProductionMeasurementRecords : BaseModel { /// /// 产品编码 /// [StringLength(64)] public string ProductionCode { get; set; } /// /// 产品条码 /// [StringLength(64)] public string ProductionBarcode { get; set; } /// /// 产品结果 ok ng /// [StringLength(64)] public string ProductionResult { get; set; } /// /// 操作开始时间 /// public DateTime OperationStartTime { get; set; } /// /// 操作结束时间 /// public DateTime OperationEndTime { get; set; } } public class ProductionMeasurementRecordsRequest : BaseRequest { /// /// 产品编码 /// public string ProductionCode { get; set; } /// /// 产品条码 /// public string ProductionBarcode { get; set; } /// /// 产品结果 /// public OutputResult ProductionResult { get; set; } } }