using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Bro.M071.Model.Model { /// /// 键单元 的检测结果 /// public class KeyUnitData : BaseModel { /// /// 产品测量记录Id /// [StringLength(64)] public string ProductionMeasurementRecordsId { get; set; } /// /// 键单元 /// [StringLength(64)] public string Key { get; set; } /// /// 检测项 /// [StringLength(64)] public string MeasurementItem { get; set; } /// /// 该键 检测项 的值 /// [StringLength(64)] public string ItemValue { get; set; } [NotMapped] public string ProductionBarcode { get; set; } } public class KeyUnitDataRequest : BaseRequest { } }