Valeo_Line_MES_backend/MDM/Models/Recipe/PfRecipeIssueLog.cs

82 lines
2.1 KiB
C#
Raw Normal View History

2026-01-10 13:47:54 +08:00
namespace RIZO.Model.MES.recipe
{
/// <summary>
/// 配方下达记录表
/// </summary>
2026-01-16 10:40:58 +08:00
[SugarTable("pf_recipe_issue_log", "配方下达记录表")]
2026-01-10 13:47:54 +08:00
public class PfRecipeIssueLog
{
/// <summary>
/// 下达记录ID主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// 配方码
/// </summary>
2026-01-16 10:40:58 +08:00
[SugarColumn(ColumnName = "recipe_code",Length =50)]
2026-01-10 13:47:54 +08:00
public string RecipeCode { get; set; }
/// <summary>
/// 版本编号
/// </summary>
2026-01-16 10:40:58 +08:00
///
[SugarColumn(Length = 50)]
2026-01-10 13:47:54 +08:00
public string Version { get; set; }
/// <summary>
/// 下达时间
/// </summary>
[SugarColumn(ColumnName = "issue_time")]
public DateTime IssueTime { get; set; }
/// <summary>
/// 工单号
/// </summary>
2026-01-16 10:40:58 +08:00
[SugarColumn(ColumnName = "workorder", Length = 50)]
2026-01-10 13:47:54 +08:00
public string Workorder { get; set; }
/// <summary>
/// 产品码
/// </summary>
2026-01-16 10:40:58 +08:00
[SugarColumn(ColumnName = "productcode", Length = 50)]
2026-01-10 13:47:54 +08:00
public string Productcode { get; set; }
/// <summary>
/// 产品名称
/// </summary>
2026-01-16 10:40:58 +08:00
[SugarColumn(ColumnName = "productname", Length = 50)]
2026-01-10 13:47:54 +08:00
public string Productname { get; set; }
/// <summary>
/// 创建人
/// </summary>
2026-01-16 10:40:58 +08:00
[SugarColumn(ColumnName = "created_by", Length = 50)]
2026-01-10 13:47:54 +08:00
public string CreatedBy { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(ColumnName = "created_time")]
public DateTime? CreatedTime { get; set; }
/// <summary>
/// 更新人
/// </summary>
2026-01-16 10:40:58 +08:00
[SugarColumn(ColumnName = "updated_by", Length = 50)]
2026-01-10 13:47:54 +08:00
public string UpdatedBy { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[SugarColumn(ColumnName = "updated_time")]
public DateTime? UpdatedTime { get; set; }
}
}