namespace ZR.Service.mes.mm
{
///
///
///
[SugarTable("mm_fk_workorder_ingredient")]
public class MmFkWorkorderIngredient
{
///
/// Id
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 工单号
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_workorder")]
public string FkWorkorder { get; set; }
///
/// 毛坯号
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_blanknumber")]
public string FkBlanknumber { get; set; }
///
/// 是否完成配料
///
public int? Isingredient { get; set; }
///
/// 剩余的待上件数量
///
[SugarColumn(ColumnName = "previous_numbered")]
public int? Previous_numbered { get; set; }
///
/// CreatedBy
///
[SugarColumn(ColumnName = "cREATED_BY")]
public string CreatedBy { get; set; }
///
/// CreatedTime
///
[SugarColumn(ColumnName = "cREATED_TIME")]
public DateTime? CreatedTime { get; set; }
///
/// UpdatedBy
///
[SugarColumn(ColumnName = "uPDATED_BY")]
public string UpdatedBy { get; set; }
///
/// UpdatedTime
///
[SugarColumn(ColumnName = "uPDATED_TIME")]
public DateTime? UpdatedTime { get; set; }
}
}