84 lines
2.1 KiB
C#
84 lines
2.1 KiB
C#
|
|
namespace DOAN.Model.PBL
|
|
{
|
|
/// <summary>
|
|
/// 物料清单
|
|
/// </summary>
|
|
[SugarTable("billofmaterials")]
|
|
public class Billofmaterials
|
|
{
|
|
/// <summary>
|
|
/// Id
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 产品名称
|
|
/// </summary>
|
|
public string Productname { get; set; }
|
|
|
|
/// <summary>
|
|
/// 产品code
|
|
/// </summary>
|
|
public string Productcode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 镜壳name
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "mirrorshell_name")]
|
|
public string MirrorshellName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 镜壳code
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "mirrorshell_code")]
|
|
public string MirrorshellCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 镜体name
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "mirrorbody_name")]
|
|
public string MirrorbodyName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 镜体code
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "mirrorbody_code")]
|
|
public string MirrorbodyCode { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 版本
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "version")]
|
|
public string Version { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "cREATED_BY")]
|
|
public string CreatedBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "cREATED_TIME")]
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "uPDATED_BY")]
|
|
public string UpdatedBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "uPDATED_TIME")]
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
}
|
|
} |