using CommunityToolkit.Mvvm.ComponentModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Models
{
///
/// 2ml瓶-滤芯工装
///
[Serializable]
public class _2mlBottleBox_Inner : BaseBottleBox
{
private int _box_inReactRack_layer = 4;
///
/// 在设备内部料架的第4层
///
public int Box_inReactRack_Layer
{
get { return _box_inReactRack_layer; }
set { SetProperty(ref _box_inReactRack_layer, value); }
}
private int _box_inReactRack_pos;
///
/// 在设备内部料架的第几层的第几个位置(1-10)
///
public int Boxd_inReactRack_Pos
{
get { return _box_inReactRack_pos; }
set { SetProperty(ref _box_inReactRack_pos, value); }
}
private int pos_inReactStation;
///
/// 在反应工站放料区的6个位置中的其中一个
///
public int Pos_InReactStation
{
get { return pos_inReactStation; }
set { SetProperty(ref pos_inReactStation, value); }
}
///
/// 从位置1开始使用
///
private int useIndex = 1;
public int UseIndex
{
get { return useIndex; }
set { SetProperty(ref useIndex, value); }
}
public _2mlBottleBox_Inner()
{
}
}
///
/// 2ml瓶-外瓶工装
///
[Serializable]
public class _2mlBottleBox_Outer : BaseBottleBox
{
private int _box_inReactRack_layer = 1;
///
/// 在设备内部料架的第1层
///
public int Box_inReactRack_Layer
{
get { return _box_inReactRack_layer; }
set { SetProperty(ref _box_inReactRack_layer, value); }
}
private int _box_inReactRack_pos;
///
/// 在设备内部料架的第几层的第几个位置(1-10)
///
public int Box_inReactRack_Pos
{
get { return _box_inReactRack_pos; }
set { SetProperty(ref _box_inReactRack_pos, value); }
}
private int pos_inReactStation;
///
/// 在反应工站放料区的6个位置中的其中一个
///
public int Pos_InReactStation
{
get { return pos_inReactStation; }
set { SetProperty(ref pos_inReactStation, value); }
}
///
/// 从位置1开始使用
///
private int useIndex = 1;
public int UseIndex
{
get { return useIndex; }
set { SetProperty(ref useIndex, value); }
}
public _2mlBottleBox_Outer()
{
}
}
}