80 lines
2.0 KiB
C#
80 lines
2.0 KiB
C#
|
||
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")]
|
||
public string RecipeCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 版本编号
|
||
/// </summary>
|
||
public string Version { get; set; }
|
||
|
||
/// <summary>
|
||
/// 下达时间
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "issue_time")]
|
||
public DateTime IssueTime { get; set; }
|
||
|
||
|
||
|
||
/// <summary>
|
||
/// 工单号
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "workorder")]
|
||
public string Workorder { get; set; }
|
||
|
||
/// <summary>
|
||
/// 产品码
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "productcode")]
|
||
public string Productcode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 产品名称
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "productname")]
|
||
public string Productname { 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; }
|
||
|
||
}
|
||
} |