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