using Business.Model; using Microsoft.EntityFrameworkCore; using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace Bussiness.Model.ProductionProcess { /// /// 生产报检记录表 /// public class mes_merecheck : BaseEntity { /// /// 主键Id /// [Key] [Description("生产报检记录Id")] public long merecheck_id { get; set; } /// /// 生产工单id /// [Description("生产工单id")] public long morder_id { get; set; } /// /// 生产工单号 /// [Required] [StringLength(50)] [Description("生产工单号")] public string morder_no { get; set; } /// /// 报检数量 /// [Precision(20, 10)] [Description("报检数量")] public decimal qty { get; set; } /// /// 报检时间 /// [Description("报检时间")] public DateTime oprtime { get; set; } /// /// 报检人id /// [Description("报检人id")] public long oprby { get; set; } } }