namespace DOAN.Model.Business
{
///
///
///
[SugarTable("base_material_bom")]
public class BaseMaterialBom
{
///
/// 雪花id
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
public string Id { get; set; }
///
/// 母件code
///
public string InvCode { get; set; }
///
/// 母件名称
///
public string InvName { get; set; }
///
/// 子件编码
///
public string SubInvCode { get; set; }
///
/// 子件名称
///
public string SubcInvName { get; set; }
///
/// 使用数量
///
public string Iusequantity { get; set; }
///
/// BOM版本
///
public string BOMVersion { 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; }
}
}