You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

41 lines
763 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ButcherFactory.SegmentProductionAuto_
{
internal class WeightStatus
{
private bool isZero;
/// <summary>
/// 零点状态
/// </summary>
public bool ZeroStatus
{
get { return isZero; }
set { isZero = value; }
}
private bool isTare;
/// <summary>
/// 扣重状态
/// </summary>
public bool TareStatus
{
get { return isTare; }
set { isTare = value; }
}
private bool isStable;
/// <summary>
/// 稳定状态
/// </summary>
public bool StableStatus
{
get { return isStable; }
set { isStable = value; }
}
}
}