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

72 lines
1.8 KiB

2 years ago
using System;
using System.Collections.Generic;
using System.Text;
namespace BBWY.Client.Models.FallWare
{
public class JDWareBoxModel:NotifyObject
2 years ago
{
private string purchaseOrder;
private string prewOrder;
private string productTitle;
2 years ago
/// <summary>
/// 箱子id
/// </summary>
public long SealBoxId { get; set; }
/// <summary>
/// 供应商名称
/// </summary>
public string ShopName { get; set; }
2 years ago
/// 运单号
/// </summary>
public string WaybillNo { get; set; }
/// <summary>
/// 仓库id
/// </summary>
public string WareId { get; set; }
2 years ago
/// <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; }
2 years ago
/// <summary>
/// 仓库城市
/// </summary>
public string WareCity { get; set; }
2 years ago
}
}