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/LjMixManager/RecipePlcView.cs

31 lines
716 B
C#

1 year ago
namespace Mesnac.Action.ChemicalWeighing.LjMixManager
{
public class RecipePlcView
{
1 year ago
public ushort Bin { get; set; }
1 year ago
public float Set { get; set; }
public float Tolerance { get; set; }
1 year ago
}
public class Step
{
1 year ago
public ushort MixCode { get; set; }
public ushort MixTime { get; set; }
1 year ago
public float MixTemp { get; set; }
public float MixSpeed { get; set; }
}
1 year ago
public class MixStep : Step
{
/// <summary>
/// 设定重量
/// </summary>
public float SetValue { get; set; }
/// <summary>
/// 设定公差
/// </summary>
public float SetTolerance { get; set; }
1 year ago
}
1 year ago
}