40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Collections.ObjectModel;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Common.Models
|
|||
|
|
{
|
|||
|
|
[Serializable]
|
|||
|
|
public class SourceLiquidBottleBoxModel : BaseBottleBox
|
|||
|
|
{
|
|||
|
|
//private bool havebox = false;
|
|||
|
|
///// <summary>
|
|||
|
|
///// 是否有原液瓶工装
|
|||
|
|
///// </summary>
|
|||
|
|
//public bool HaveBox
|
|||
|
|
//{
|
|||
|
|
// get { return havebox; }
|
|||
|
|
// set { SetProperty(ref havebox, value); }
|
|||
|
|
//}
|
|||
|
|
|
|||
|
|
private ObservableCollection<SourceLiquidBottleModel> sourceliquidbottlecollection;
|
|||
|
|
/// <summary>
|
|||
|
|
/// 一个原液瓶工装中的原液瓶集合(8个原液瓶)
|
|||
|
|
/// </summary>
|
|||
|
|
public ObservableCollection<SourceLiquidBottleModel> SourceLiquidBottleCollection
|
|||
|
|
{
|
|||
|
|
get { return sourceliquidbottlecollection; }
|
|||
|
|
set { SetProperty(ref sourceliquidbottlecollection, value); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public SourceLiquidBottleBoxModel()
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|