using Prism.Mvvm;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TeamAAS_VP.Models
{
///
/// 数量(批头、吸嘴、供料器)
///
public class NumberStatistics:BindableBase
{
private int _NozzleNum;
///
/// 吸嘴数量
///
public int NozzleNum
{
get { return _NozzleNum; }
set { SetProperty(ref _NozzleNum, value); }
}
private int _HeaderNum;
///
/// 批头数量
///
public int HeaderNum
{
get { return _HeaderNum; }
set { SetProperty(ref _HeaderNum, value); }
}
private int _Feeder1Num;
///
/// 供料器1数量
///
public int Feeder1Num
{
get { return _Feeder1Num; }
set { SetProperty(ref _Feeder1Num, value); }
}
private int _Feeder2Num;
///
/// 供料器2数量
///
public int Feeder2Num
{
get { return _Feeder2Num; }
set { SetProperty(ref _Feeder2Num, value); }
}
}
}