步步为盈
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.

36 lines
881 B

using BBWY.Client.Models.SealBox;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Text;
namespace BBWY.Client.Models.FallWare
{
public class FallWareWaitConfigureModel
{
/// <summary>
/// 封箱id
/// </summary>
public long SealBoxId { get; set; }
/// <summary>
/// 箱子总数量
/// </summary>
public int SealBoxTotalCount { get; set; }
/// <summary>
/// 仓库名称
/// </summary>
public string WareName { get; set; }
/// <summary>
/// 仓库类型
/// </summary>
public WareType? WareType { get; set; }
/// <summary>
/// 仓库任务列表
/// </summary>
public ObservableCollection<SealBoxConfigureTask> SealBoxConfigureTasks { get; set; }
}
}