using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Text;
namespace BBWY.Client.Models.SealBox
{
public class SealBoxConfigureModel : NotifyObject
{
///
/// skuid
///
public string SkuId { get; set; }
///
/// 任务id
///
public long TaskId { get; set; }
///
/// sku任务数
///
public int SkuCount { get; set; }
///
/// sku图片
///
public string Logo { get; set; }
private int splitCount;
///
/// 份数
///
public int SplitCount { get=>splitCount; set {Set(ref splitCount,value); } }
private ObservableCollection wareHourseDatas = new ObservableCollection();
///
/// 装箱配置列表
///
public ObservableCollection WareHourseDatas { get => wareHourseDatas; set { Set(ref wareHourseDatas, value); } }
}
///
/// 封箱配置 装箱配置
///
public class SealBoxConfigureWareHourseModel : NotifyObject
{
private int index;
public int Index { get => index; set { Set(ref index, value); } }
private int count;
public int Count { get=>count; set {Set(ref count,value); } }
private string wareId;
public string WareId { get => wareId; set { Set(ref wareId, value); } }
private string wareName;
public string WareName { get => wareName; set { Set(ref wareName, value); } }
private WareType? wareType;
public WareType? WareType { get => wareType; set { Set(ref wareType, value); } }
///
///待封箱 = 0, 待落仓 = 1, 待完结 = 2
///
public PositionState? WareState { get; set; }
///
///封箱id
///
public long? SealBoxId { get; set; }
}
}