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/LjDry/DrySettingView.cs

21 lines
645 B
C#

namespace Mesnac.Action.ChemicalWeighing.LjDry
{
public class DrySettingView
{
public int Id { get; set; }
public string Name { get; set; }
public bool Model { get; set; }
public bool Status { get; set; }
public int Batch { get; set; }
public int Step { get; set; }
public int StepCode { get; set; }
public int TotalTime { get; set; }
public int StepTime { get; set; }
public float Temperature { get; set; }
public float Speed { get; set; }
public float Currnet { get; set; }
public float Pressure { get; set; }
}
}