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.
34 lines
719 B
C#
34 lines
719 B
C#
using System;
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.LjPlanning.Entity
|
|
{
|
|
public class LjFormula
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string FormulaNo { get; set; }
|
|
|
|
public string FormulaName { get; set; }
|
|
|
|
public int? RecipeTypeId { get; set; }
|
|
|
|
public string RecipeTypeName { get; set; }
|
|
|
|
public int? IsEnable { get; set; }
|
|
|
|
public string FormulaVersion { get; set; }
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
public DateTime? UpdateTime { get; set; }
|
|
|
|
public int? Unit { get; set; }
|
|
|
|
|
|
public bool CbSiloC { get; set; }
|
|
public bool CbSiloH { get; set; }
|
|
public bool CbWeterH { get; set; }
|
|
}
|
|
}
|
|
|