Files
sy_hx_pbl_backend/DOAN.Model/PBL/Billofmaterials.cs

84 lines
2.1 KiB
C#
Raw Normal View History

2024-09-23 11:54:56 +08:00
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; }
2024-11-07 20:17:39 +08:00
/// <summary>
/// 版本
/// </summary>
[SugarColumn(ColumnName = "version")]
2024-11-08 10:10:59 +08:00
public string Version { get; set; }
2024-11-07 20:17:39 +08:00
2024-09-23 11:54:56 +08:00
/// <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; }
}
}