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.
61 lines
1.4 KiB
61 lines
1.4 KiB
2 years ago
|
using BBWY.Client.Models.SealBox;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace BBWY.Client.Models.FallWare
|
||
|
{
|
||
|
public class FallWareConfiguredModel
|
||
|
{ /// <summary>
|
||
|
/// 商品名称
|
||
|
/// </summary>
|
||
|
public string ProductTitle { get; set; }
|
||
|
/// <summary>
|
||
|
/// 采购单号
|
||
|
/// </summary>
|
||
|
public string PurchaseOrder { get; set; }
|
||
|
/// <summary>
|
||
|
/// 预约单号
|
||
|
/// </summary>
|
||
|
public string PrewOrder { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 运单号
|
||
|
/// </summary>
|
||
|
public string WaybillNo { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 仓库类型
|
||
|
/// </summary>
|
||
|
public WareType? WareType { get; set; }
|
||
|
/// <summary>
|
||
|
/// 封箱id
|
||
|
/// </summary>
|
||
|
public long SealBoxId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 仓库名称
|
||
|
/// </summary>
|
||
|
public string WareName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 箱子数
|
||
|
/// </summary>
|
||
|
public int? BoxCount { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 箱子总数量
|
||
|
/// </summary>
|
||
|
public int SealBoxTotalCount { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 仓库任务列表
|
||
|
/// </summary>
|
||
|
public IList<FallWareConfigureTask> SealBoxConfigureTasks { get; set; }
|
||
|
}
|
||
|
public class FallWareConfigureTask : SealBoxConfigureTask
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|