using SqlSugar;
namespace NewPdaSqlServer.entity;
///
///
[SugarTable("MES_ITEM_BL_DETAIL")]
public class MesItemBlDetail
{
///
/// ID
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
public Guid Id { get; set; }
///
/// MID
///
[SugarColumn(ColumnName = "mid")]
public Guid? Mid { get; set; }
///
/// 工单号
///
[SugarColumn(ColumnName = "bld001")]
public string Bld001 { get; set; }
///
/// 物料编号
///
[SugarColumn(ColumnName = "bld002")]
public string Bld002 { get; set; }
///
/// 物料名称
///
[SugarColumn(ColumnName = "bld003")]
public string Bld003 { get; set; }
///
/// 规格型号
///
[SugarColumn(ColumnName = "bld004")]
public string Bld004 { get; set; }
///
/// 颜色
///
[SugarColumn(ColumnName = "bld005")]
public string Bld005 { get; set; }
///
/// 计划数量
///
[SugarColumn(ColumnName = "bld006")]
public decimal? Bld006 { get; set; }
///
/// 申请数量
///
[SugarColumn(ColumnName = "bld007")]
public decimal? Bld007 { get; set; }
///
/// 已领数量
/// 默认值: ((0))
///
[SugarColumn(ColumnName = "bld008")]
public decimal? Bld008 { get; set; }
///
/// 单位
///
[SugarColumn(ColumnName = "bld009")]
public string Bld009 { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "bld010")]
public string Bld010 { get; set; }
///
/// 完结标识
/// 默认值: ((0))
///
[SugarColumn(ColumnName = "bld011")]
public int? Bld011 { get; set; }
///
/// 物料id
///
[SugarColumn(ColumnName = "bld012")]
public int? Bld012 { get; set; }
///
/// 项次
///
[SugarColumn(ColumnName = "bld013")]
public int? Bld013 { get; set; }
///
/// ERP投料单行id
///
[SugarColumn(ColumnName = "bld014")]
public int? Bld014 { get; set; }
///
///
[SugarColumn(ColumnName = "bld015")]
public string Bld015 { get; set; }
///
///
[SugarColumn(ColumnName = "bld016")]
public string Bld016 { get; set; }
///
///
[SugarColumn(ColumnName = "bld017")]
public string Bld017 { get; set; }
///
///
[SugarColumn(ColumnName = "bld018")]
public string Bld018 { get; set; }
///
///
[SugarColumn(ColumnName = "bld019")]
public string Bld019 { get; set; }
///
///
[SugarColumn(ColumnName = "bld020")]
public string Bld020 { get; set; }
///
/// 关联的dab表主键
///
[SugarColumn(ColumnName = "dabGuid")]
public Guid? DabGuid { get; set; }
}