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/LjPlanning/Entity/LjFormulaDetail.cs

44 lines
954 B
C#

namespace Mesnac.Action.ChemicalWeighing.LjPlanning.Entity
{
public class LjFormulaDetail
{
public int Id { get; set; }
public int FormulaId { get; set; }
public short 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 short ActionCode { get; set; }
public string ActionName { get; set; }
public short TimeInfo { get; set; }
1 year ago
public float Temp { get; set; }
1 year ago
public float Speed { get; set; }
public float SetValue { get; set; }
1 year ago
public float SetTolerance { get; set; }
public int StockMaterialId { get; set; }
public int ActionId { get; set; }
}
}