using SqlSugar; namespace NewPdaSqlServer.entity; /// /// [SugarTable("MES_ITEM_BL")] public class MesItemBl { /// /// ID /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public Guid Id { get; set; } /// /// 补料单号 /// [SugarColumn(ColumnName = "bl_no")] public string BlNo { get; set; } /// /// 生产工单 /// [SugarColumn(ColumnName = "bl001")] public string Bl001 { get; set; } /// /// 产品编号 /// [SugarColumn(ColumnName = "bl002")] public string Bl002 { get; set; } /// /// 产量 /// [SugarColumn(ColumnName = "bl003")] public int? Bl003 { get; set; } /// /// 申请人 /// [SugarColumn(ColumnName = "bl004")] public string Bl004 { get; set; } /// /// 领料日期 /// [SugarColumn(ColumnName = "bl005")] public DateTime? Bl005 { get; set; } /// /// 审核日期 /// [SugarColumn(ColumnName = "bl006")] public DateTime? Bl006 { get; set; } /// /// 补料原因 /// [SugarColumn(ColumnName = "bl007")] public string Bl007 { get; set; } /// /// 出库类别(补料,超领) /// [SugarColumn(ColumnName = "bl008")] public string Bl008 { get; set; } /// /// 业务类型 /// [SugarColumn(ColumnName = "bl009")] public string Bl009 { get; set; } /// /// 发料仓 /// [SugarColumn(ColumnName = "bl010")] public string Bl010 { get; set; } /// /// 补料部门 /// [SugarColumn(ColumnName = "bl011")] public string Bl011 { get; set; } /// /// 补料产线 /// [SugarColumn(ColumnName = "bl012")] public string Bl012 { get; set; } /// /// 任务单号 /// [SugarColumn(ColumnName = "bl013")] public string Bl013 { get; set; } /// /// 产品名称 /// [SugarColumn(ColumnName = "bl014")] public string Bl014 { get; set; } /// /// 产品型号 /// [SugarColumn(ColumnName = "bl015")] public string Bl015 { get; set; } /// /// 审核人 /// [SugarColumn(ColumnName = "bl016")] public string Bl016 { get; set; } /// /// 业务类型编码 /// [SugarColumn(ColumnName = "bl017")] public string Bl017 { get; set; } /// /// 审核状态 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "bl018")] public bool? Bl018 { get; set; } /// /// 完结标识 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "bl019")] public bool? Bl019 { get; set; } /// /// 产品id /// [SugarColumn(ColumnName = "item_id")] public int? ItemId { get; set; } /// /// 完成人 /// [SugarColumn(ColumnName = "wc_user")] public string WcUser { get; set; } /// /// 完成时间 /// [SugarColumn(ColumnName = "wc_time")] public string WcTime { get; set; } }