C00225155-02/C00225155/MegaRobo.C00225155/Common/BottleModels/_2mlBottleBox.cs

114 lines
3.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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