namespace Admin.NET.Plugin.AiDOP.Order;
/// 浜у搧璁捐鏍囧噯 BOM 鏄庣粏
[SugarTable("ado_product_design_bom", "浜у搧璁捐BOM鏄庣粏")]
public class ProductDesignBom
{
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = false)]
public long Id { get; set; }
[SugarColumn(ColumnName = "ProductDesignId")]
public long ProductDesignId { get; set; }
/// 鐖剁骇 BOM 琛?Id锛宯ull 琛ㄧず鏍硅妭鐐?/summary>
[SugarColumn(ColumnName = "ParentBomId", IsNullable = true)]
public long? ParentBomId { get; set; }
[SugarColumn(ColumnName = "Seq", IsNullable = true)]
public int? Seq { get; set; }
[SugarColumn(ColumnName = "ItemNum", Length = 64, IsNullable = true)]
public string? ItemNum { get; set; }
[SugarColumn(ColumnName = "ItemName", Length = 256, IsNullable = true)]
public string? ItemName { get; set; }
[SugarColumn(ColumnName = "ProcessCode", Length = 64, IsNullable = true)]
public string? ProcessCode { get; set; }
[SugarColumn(ColumnName = "Qty", IsNullable = true)]
public decimal? Qty { get; set; }
[SugarColumn(ColumnName = "FixedLossQty", IsNullable = true)]
public decimal? FixedLossQty { get; set; }
[SugarColumn(ColumnName = "BatchNo", Length = 64, IsNullable = true)]
public string? BatchNo { get; set; }
/// 绉熸埛ID锛堝绉熸埛闅旂锛?/summary>
[SugarColumn(ColumnName = "tenant_id", IsNullable = true)]
public long? TenantId { get; set; }
}