You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
44 lines
1.2 KiB
2 years ago
|
using BBWY.Client.Models.APIModel;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Collections.ObjectModel;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace BBWY.Client.Models.SealBox
|
||
|
{
|
||
|
public class UpdateSealBoxConfiguredTaskModel:NotifyObject
|
||
|
{
|
||
|
public string Logo { get; set; }
|
||
|
|
||
|
public string SkuId { get; set; }
|
||
|
|
||
|
public long TaskId { get; set; }
|
||
|
/// <summary>
|
||
|
/// 采购数量
|
||
|
/// </summary>
|
||
|
public int SkuCount { get; set; }
|
||
|
public string SkuName { get; set; }
|
||
|
|
||
|
private int taskWareCount;
|
||
|
/// <summary>
|
||
|
/// 份数
|
||
|
/// </summary>
|
||
|
public int TaskWareCount { get => taskWareCount; set { Set(ref taskWareCount, value); } }
|
||
|
|
||
|
|
||
|
|
||
|
private ObservableCollection<UpdateSealBoxWareHourseModel> wareHourseDatas;
|
||
|
|
||
|
public ObservableCollection<UpdateSealBoxWareHourseModel> WareHourseDatas { get => wareHourseDatas; set { Set(ref wareHourseDatas, value); } }
|
||
|
}
|
||
|
public class UpdateSealBoxWareHourseModel:WareHourseData
|
||
|
{
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
///待封箱 = 0, 待落仓 = 1, 待完结 = 2
|
||
|
/// </summary>
|
||
|
public PositionState? WareState { get; set; }
|
||
|
}
|
||
|
}
|