namespace Mesnac.Action.ChemicalWeighing.LjPlanning.Entity { public class LjFormulaDetail { public int Id { get; set; } public int FormulaId { get; set; } public int BinNo { get; set; } public int MId { get; set; } public string MName { get; set; } public float Weight { get; set; } public float Tolerance { get; set; } public string Machine { get; set; } public string MachineType { get; set; } public int FormulaType { get; set; } public int ActionCode { get; set; } public string ActionName { get; set; } public int TimeInfo { get; set; } public float Temp { get; set; } public float Speed { get; set; } public float SetValue { get; set; } public float SetTolerance { get; set; } public int StockMaterialId { get; set; } public int ActionId { get; set; } } }