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.LjMixManager
|
|
|
|
|
{
|
|
|
|
|
public class RecipePlcView
|
|
|
|
|
{
|
|
|
|
|
public int Bin { get; set; }
|
|
|
|
|
public float Set { get; set; }
|
|
|
|
|
public float TolErance { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class Step
|
|
|
|
|
{
|
|
|
|
|
public int MixCode { get; set; }
|
|
|
|
|
public int MixTime { get; set; }
|
|
|
|
|
public float MixTemp { get; set; }
|
|
|
|
|
public float MixSpeed { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class MixStep : Step
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设定重量
|
|
|
|
|
/// </summary>
|
|
|
|
|
public float SetValue { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设定公差
|
|
|
|
|
/// </summary>
|
|
|
|
|
public float SetTolerance { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|