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.
71 lines
1.8 KiB
71 lines
1.8 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BBWY.Client.Models.FallWare
|
|
{
|
|
public class JDWareBoxModel:NotifyObject
|
|
{
|
|
private string purchaseOrder;
|
|
private string prewOrder;
|
|
private string productTitle;
|
|
/// <summary>
|
|
/// 箱子id
|
|
/// </summary>
|
|
public long SealBoxId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 供应商名称
|
|
/// </summary>
|
|
public string ShopName { get; set; }
|
|
|
|
|
|
/// 运单号
|
|
/// </summary>
|
|
public string WaybillNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 仓库id
|
|
/// </summary>
|
|
public string WareId { get; set; }
|
|
/// <summary>
|
|
/// 目的城市-仓库
|
|
/// </summary>
|
|
public string WareName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱子数
|
|
/// </summary>
|
|
public int BoxCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 商品数量
|
|
/// </summary>
|
|
public int ProductCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 采购单号
|
|
/// </summary>
|
|
public string PurchaseOrder { get => purchaseOrder; set { Set(ref purchaseOrder, value); } }
|
|
|
|
/// <summary>
|
|
/// 预约单号
|
|
/// </summary>
|
|
public string PrewOrder { get => prewOrder; set { Set(ref prewOrder, value); } }
|
|
|
|
/// <summary>
|
|
/// 商品名称
|
|
/// </summary>
|
|
public string ProductTitle { get => productTitle; set { Set(ref productTitle, value); } }
|
|
|
|
/// <summary>
|
|
/// 供应商
|
|
/// </summary>
|
|
public string ProviderName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 仓库城市
|
|
/// </summary>
|
|
public string WareCity { get; set; }
|
|
}
|
|
}
|
|
|