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.
31 lines
713 B
C#
31 lines
713 B
C#
namespace Mesnac.Action.ChemicalWeighing.LjMixManager
|
|
{
|
|
public class RecipePlcView
|
|
{
|
|
public short Bin { get; set; }
|
|
public float Set { get; set; }
|
|
public float Tolerance { get; set; }
|
|
}
|
|
|
|
public class Step
|
|
{
|
|
public short MixCode { get; set; }
|
|
public short 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; }
|
|
}
|
|
} |