using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using FreeSql.DataAnnotations;
namespace Mesnac.Action.ChemicalWeighing.FreeDb.DBEntity
{
[Table(Name = "Lj_Formula")]
public partial class LjFormulaEntity
{
[Column(IsPrimary = true)]
public int Id { get; set; }
///
/// 糊化机copy称量配方
///
public int? CbSiloC { get; set; }
///
/// 糊化机copy混合配方
///
public int? CbSiloH { get; set; }
///
/// 湿混机copy混合配方
///
public int? CbWeterH { get; set; }
public DateTime CreateTime { get; set; }
[Column(DbType = "nvarchar(50)")]
public string FormulaName { get; set; } = string.Empty;
///
/// 编号
///
[Column(DbType = "nvarchar(50)")]
public string FormulaNo { get; set; } = string.Empty;
[Column(DbType = "nvarchar(50)")]
public string FormulaVersion { get; set; } = string.Empty;
public int? IsEnable { get; set; }
public int? RecipeTypeId { get; set; }
[Column(DbType = "nvarchar(50)")]
public string RecipeTypeName { get; set; } = string.Empty;
///
/// 状态
///
public int? Status { get; set; }
///
/// 生产单元
///
public int? Unit { get; set; }
public DateTime? UpdateTime { get; set; }
}
}