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