You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace djy.Paas.Model
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ContainerDto:BaseDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 报关订单Gid
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Guid? BaoguanOrderGid { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 箱号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ContainerId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 箱型类型
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ContainerMd { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
///箱型类型名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ContainerMdName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 商品项号编号 多个,间隔
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string GoodsNo { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 箱内商品数据详情
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<tb_BaoguanDecList> GoodsList { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 报关数据详情
|
|
|
|
|
/// </summary>
|
|
|
|
|
public tb_BaoGuanOrderList OrderInfo { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|