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_Down")] public partial class LjFormulaDownEntity { [Column(IsPrimary = true, IsIdentity = true)] public int Id { get; set; } /// <summary> /// 糊化机copy称量配方 /// </summary> public int? CbSiloC { get; set; } /// <summary> /// 糊化机copy混合配方 /// </summary> public int? CbSiloH { get; set; } /// <summary> /// 湿混机copy混合配方 /// </summary> public int? CbWeterH { get; set; } public DateTime CreateTime { get; set; } public int? FormulaId { get; set; } [Column(DbType = "nvarchar(50)")] public string FormulaName { get; set; } = string.Empty; /// <summary> /// 编号 /// </summary> [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? PlanId { get; set; } public int? RecipeTypeId { get; set; } [Column(DbType = "nvarchar(50)")] public string RecipeTypeName { get; set; } = string.Empty; /// <summary> /// 状态 /// </summary> public int? Status { get; set; } /// <summary> /// 生产单元 /// </summary> public int? Unit { get; set; } public DateTime? UpdateTime { get; set; } } }