You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lj_plc/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/FreeDb/DBEntity/LjFormulaEntity.cs

80 lines
1.4 KiB
C#


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; }
/// <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; }
[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? 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; }
}
}