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