namespace DOAN.Model.MES.base_
{
///
///
///
[SugarTable("base_material_bom")]
public class BaseMaterialBom1
{
///
/// FkId
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_id")]
public string FkId { get; set; }
///
/// FkParentId
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_parent_id")]
public string FkParentId { get; set; }
///
/// Sort
///
public int? Sort { get; set; }
///
/// CreatedBy
///
[SugarColumn(ColumnName = "cREATED_BY")]
public string CreatedBy { get; set; }
///
/// CreatedTime
///
[SugarColumn(ColumnName = "cREATED_TIME")]
public DateTime? CreatedTime { get; set; }
///
/// UpdatedBy
///
[SugarColumn(ColumnName = "uPDATED_BY")]
public string UpdatedBy { get; set; }
///
/// UpdatedTime
///
[SugarColumn(ColumnName = "uPDATED_TIME")]
public DateTime? UpdatedTime { get; set; }
}
}