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.
|
|
|
|
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 float? ActionCode { get; set; }
|
|
|
|
|
|
|
|
|
|
public string ActionName { get; set; }
|
|
|
|
|
|
|
|
|
|
public float? 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; }
|
|
|
|
|
}
|
|
|
|
|
}
|