using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Application.Entity
{
///
///
///
[SugarTable("booking_ctn")]
[Description("箱信息")]
public class BookingCtn : DBEntityTenant
{
///
/// 单据ID
///
[Description("单据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; }
}
}