namespace DOAN.Model.PBL
{
///
/// 物料清单
///
[SugarTable("billofmaterials")]
public class Billofmaterials
{
///
/// Id
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 产品名称
///
public string Productname { get; set; }
///
/// 产品code
///
public string Productcode { get; set; }
///
/// 镜壳name
///
[SugarColumn(ColumnName = "mirrorshell_name")]
public string MirrorshellName { get; set; }
///
/// 镜壳code
///
[SugarColumn(ColumnName = "mirrorshell_code")]
public string MirrorshellCode { get; set; }
///
/// 镜体name
///
[SugarColumn(ColumnName = "mirrorbody_name")]
public string MirrorbodyName { get; set; }
///
/// 镜体code
///
[SugarColumn(ColumnName = "mirrorbody_code")]
public string MirrorbodyCode { get; set; }
///
/// 版本
///
[SugarColumn(ColumnName = "version")]
public string Version { 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; }
}
}