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.
45 lines
985 B
45 lines
985 B
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace BBWY.Client.Models.FallWare
|
||
|
{
|
||
|
public class CloudWareBoxModel
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 箱子id
|
||
|
/// </summary>
|
||
|
public long SealBoxId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 供应商名称
|
||
|
/// </summary>
|
||
|
public string ShopName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// CLPS采购单号
|
||
|
/// </summary>
|
||
|
public string CLPSPurchaseOrder { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 预约单号
|
||
|
/// </summary>
|
||
|
public string PrewOrder { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 目的城市-仓库
|
||
|
/// </summary>
|
||
|
public string WareName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 箱子数
|
||
|
/// </summary>
|
||
|
public int BoxCount { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 商品数量
|
||
|
/// </summary>
|
||
|
public int ProductCount { get; set; }
|
||
|
}
|
||
|
}
|