Valeo_Line_MES_backend/MDM/Models/Recipe/PfRecipeIssueLog.cs
2026-01-16 10:41:38 +08:00

82 lines
2.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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