using System;
using System.Collections.Generic;
using Myshipping.Core;
namespace Myshipping.Application
{
///
/// 箱信息输出参数
///
public class BookingCtnDto
{
///
/// 主键
///
public long? Id { get; set; }
///
/// 单据ID
///
public long? BILLID { get; set; }
///
/// 箱型代码
///
public string CTNCODE{ get; set;}
///
/// 箱型
///
public string CTNALL { get; set; }
///
/// 箱量
///
public int? CTNNUM { get; set; }
///
/// TEU
///
public int? TEU { get; set; }
///
/// 箱号
///
public string CNTRNO { get; set; }
///
/// 封号
///
public string SEALNO { get; set; }
///
/// 件数
///
public int? PKGS { get; set; }
///
/// 包装
///
public string KINDPKGS { get; set; }
///
/// 毛重
///
public decimal? KGS { get; set; }
///
/// 尺码
///
public decimal? CBM { get; set; }
///
/// 皮重
///
public decimal? TAREWEIGHT { get; set; }
///
/// 箱状态
///
public string CTNSTATUS { get; set; }
///
/// 称重方式
///
public string WEIGHTYPE { get; set; }
///
/// 称重重量
///
public decimal? WEIGHKGS { get; set; }
///
/// 称重联系人
///
public string WEIGHATTN { get; set; }
///
/// VGM联系公司
///
public string VGMCONNCOM { get; set; }
///
/// VGM联系电话
///
public string WEIGHTEL { get; set; }
///
/// 称重日期
///
public string WEIGHDATE { get; set; }
///
/// VGM地址
///
public string VGMADDR { get; set; }
///
/// VGM邮箱
///
public string VGMEMAIL { get; set; }
///
/// 备注
///
public string REMARK { get; set; }
public List ctnDetailInputs { get; set; }
}
}