using DS.Module.Core.Data;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Entity
{
///
/// 集装箱信息
///
[SqlSugar.SugarTable("op_ctn", "集装箱信息")]
public class OpCtn : BaseOrgModel
{
///
/// 业务编号
///
[SqlSugar.SugarColumn(ColumnDescription = "业务编号", IsNullable = true, Length = 100)]
public string BSNO { get; set; }
///
/// 箱型Id
///
[SugarColumn(ColumnDescription = "箱型Id")]
public long CtnId { get; set; }
///
/// 箱型代码
///
[SugarColumn(ColumnDescription = "箱型代码", IsNullable = true, Length = 5)]
public string CtnCode { get; set; }
///
/// 尺寸
///
[SugarColumn(ColumnDescription = "尺寸", IsNullable = true, Length = 3)]
public string Size { get; set; }
///
/// 箱型
///
[SugarColumn(ColumnDescription = "箱型", IsNullable = true, Length = 10)]
public string Ctn { get; set; }
///
/// 箱量
///
[SugarColumn(ColumnDescription = "箱量", IsNullable = true, DefaultValue = "0")]
public int? CtnNum { get; set; }
///
/// TEU
///
[SugarColumn(ColumnDescription = "TEU", IsNullable = true, DefaultValue = "0")]
public int TEU { get; set; }
///
/// 表现形式
///
[SugarColumn(ColumnDescription = "表现形式", IsNullable = true, Length = 10)]
public string CtnAll { get; set; }
///
/// 箱号
///
[SugarColumn(ColumnDescription = "箱号", IsNullable = true, Length = 30)]
public string CntrNo { get; set; }
///
/// 封号
///
[SugarColumn(ColumnDescription = "封号", IsNullable = true, Length = 20)]
public string SealNo { get; set; }
///
/// 件数
///
[SugarColumn(ColumnDescription = "件数", IsNullable = true)]
public int? PKGS { get; set; }
///
/// 毛重
///
[SugarColumn(ColumnDescription = "毛重", IsNullable = true, Length = 18, DecimalDigits = 3, DefaultValue = "0")]
public decimal? KGS { get; set; }
///
/// 尺码
///
[SugarColumn(ColumnDescription = "尺码", IsNullable = true, Length = 18, DecimalDigits = 3, DefaultValue = "0")]
public decimal? CBM { get; set; }
///
/// 包装Id t_code_package
///
[SugarColumn(ColumnDescription = "包装", IsNullable = true, Length = 20)]
public string KindPkgs { get; set; }
///
/// 包装名称 t_code_package
///
[SugarColumn(ColumnDescription = "包装名称", IsNullable = true, Length = 50)]
public string KindPkgsName { get; set; }
///
/// 皮重
///
[SugarColumn(ColumnDescription = "皮重", IsNullable = true, Length = 18, DecimalDigits = 3, DefaultValue = "0")]
public decimal? TareWeight { get; set; }
///
/// 品名
///
[SugarColumn(ColumnDescription = "品名", IsNullable = true, Length = 30)]
public string GoodsName { get; set; }
///
/// 箱状态
///
[SugarColumn(ColumnDescription = "箱状态", IsNullable = true, Length = 10)]
public string CtnStatus { get; set; }
///
/// 称重方式
///
[SugarColumn(ColumnDescription = "称重方式", IsNullable = true, Length = 30)]
public string WeightType { get; set; }
///
/// 称重重量
///
[SugarColumn(ColumnDescription = "称重重量", IsNullable = true, Length = 18, DecimalDigits = 3, DefaultValue = "0")]
public decimal? WeightKGS { get; set; }
///
/// VGM联系人
///
[SugarColumn(ColumnDescription = "VGM联系人", IsNullable = true, Length = 20)]
public string WeightATTN { get; set; }
///
/// VGM联系人电话
///
[SugarColumn(ColumnDescription = "VGM联系人电话", IsNullable = true, Length = 20)]
public string WeightTel { get; set; }
///
/// VGM联系人签名
///
[SugarColumn(ColumnDescription = "VGM联系人签名", IsNullable = true, Length = 20)]
public string WeightSign { get; set; }
///
/// VGM称重日期
///
[SugarColumn(ColumnDescription = "VGM称重日期", IsNullable = true, Length = 20)]
public string WeightDate { get; set; }
///
/// 主票业务编号
///
[SqlSugar.SugarColumn(ColumnDescription = "主票业务编号", IsNullable = true, Length = 100)]
public string MasterNo { get; set; }
///
/// 承运车队
///
[SqlSugar.SugarColumn(ColumnDescription = "承运车队", IsNullable = true, Length = 20)]
public string Trucker { get; set; }
///
/// 车号
///
[SqlSugar.SugarColumn(ColumnDescription = "车号", IsNullable = true, Length = 30)]
public string TruckNo { get; set; }
///
/// 运费
///
[SugarColumn(ColumnDescription = "运费", IsNullable = true, Length = 18, DecimalDigits = 2, DefaultValue = "0")]
public decimal? TruckFee { get; set; }
///
/// 免堆存天数
///
[SugarColumn(ColumnDescription = "免堆存天数", IsNullable = true, DefaultValue = "0")]
public int FreeStorageDay { get; set; }
///
/// 堆存天数
///
[SugarColumn(ColumnDescription = "堆存天数", IsNullable = true, DefaultValue = "0")]
public int StorageDay { get; set; }
///
/// 堆存费/天
///
[SugarColumn(ColumnDescription = "堆存费/天", IsNullable = true, Length = 18, DecimalDigits = 2, DefaultValue = "0")]
public decimal? StoragePrice { get; set; }
///
/// 堆存费
///
[SugarColumn(ColumnDescription = "堆存费", IsNullable = true, Length = 18, DecimalDigits = 2, DefaultValue = "0")]
public decimal? StorageFee { get; set; }
///
/// 免箱使天数
///
[SugarColumn(ColumnDescription = "免箱使天数", IsNullable = true, DefaultValue = "0")]
public int FreeCtnDay { get; set; }
///
/// 箱使天数
///
[SugarColumn(ColumnDescription = "箱使天数", IsNullable = true, DefaultValue = "0")]
public int CtnDay { get; set; }
///
/// 箱使费/天
///
[SugarColumn(ColumnDescription = "箱使费/天", IsNullable = true, Length = 18, DecimalDigits = 2, DefaultValue = "0")]
public decimal? CtnPrice { get; set; }
///
/// 箱使费
///
[SugarColumn(ColumnDescription = "箱使费", IsNullable = true, Length = 18, DecimalDigits = 2, DefaultValue = "0")]
public decimal? CtnFee { get; set; }
///
/// Desc:是否暂出
///
[SugarColumn(ColumnDescription = "是否暂出", IsNullable = true, DefaultValue = "0")]
public bool? IsTemp { get; set; } = false;
///
/// VGM地址
///
[SqlSugar.SugarColumn(ColumnDescription = "VGM地址", IsNullable = true, Length = 100)]
public string VGMAddr { get; set; }
///
/// VGM邮箱
///
[SqlSugar.SugarColumn(ColumnDescription = "VGM邮箱", IsNullable = true, Length = 60)]
public string VGMEmail { get; set; }
///
/// 提箱时间
///
[SqlSugar.SugarColumn(ColumnDescription = "提箱时间", IsNullable = true, Length = 50)]
public string PickUpTime { get; set; }
///
/// 实际到港时间
///
[SqlSugar.SugarColumn(ColumnDescription = "实际到港时间", IsNullable = true, Length = 50)]
public string ActualArrivalPortTime { get; set; }
}
}