namespace ZR.Model.MES.wms { /// /// 成品入库检验 /// [SugarTable("wm_fgentry_inspect")] public class WmFgentryInspect { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 工单号 /// public string Workorder { get; set; } /// /// 箱子号 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false)] public string Packcode { get; set; } /// /// 工位 /// public string Machine { get; set; } /// /// 箱子里产品个数 /// [SugarColumn(ColumnName = "production_num")] public int? ProductionNum { get; set; } /// /// 零件号 /// public string Partnumber { get; set; } /// /// 是否满箱 /// public int? Bfilled { get; set; } /// /// 检验结果(0未检,1合格,2不合格) /// public int? Result { get; set; } /// /// 是否入库(0未入,1入库) /// [SugarColumn(ColumnName = "bit_wm")] public int? Bitwm { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "cREATED_BY")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "cREATED_TIME")] public DateTime? CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "uPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "uPDATED_TIME")] public DateTime? UpdatedTime { get; set; } } }