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; }
|
|
}
|
|
}
|
|
}
|