using System;
using System.Collections.Generic;
using SqlSugar;
using Myshipping.Core.Entity;
/*
* @author : whm
* @date : 2024-1-5
* @desc : 舱位分配集装箱表
*/
namespace Myshipping.Application
{
///
/// 舱位分配集装箱表
///
[SugarTable("booking_slot_allocation_ctn", TableDescription = "舱位分配集装箱表")]
public class BookingSlotAllocationCtn : DBEntityTenant
{
///
/// 舱位分配主键
///
[SugarColumn(ColumnName = "SLOT_ALLOC_ID")]
public long SLOT_ALLOC_ID{ get; set; }
///
/// 箱型代码
///
[SugarColumn(ColumnName = "CTNCODE")]
public string CTNCODE{ get; set; }
///
/// 箱型名称
///
[SugarColumn(ColumnName = "CTNALL")]
public string CTNALL{ get; set; }
///
/// 箱量
///
[SugarColumn(ColumnName = "CTNNUM")]
public int CTNNUM{ get; set; }
///
/// 箱号
///
[SugarColumn(ColumnName = "CNTRNO")]
public string CNTRNO{ get; set; }
///
/// 箱封号
///
[SugarColumn(ColumnName = "SEALNO")]
public string SEALNO{ get; set; }
///
/// 件数
///
[SugarColumn(ColumnName = "PKGS")]
public int PKGS{ get; set; }
///
/// 包装
///
[SugarColumn(ColumnName = "KINDPKGS")]
public string KINDPKGS{ get; set; }
///
/// 毛重
///
[SugarColumn(ColumnName = "KGS")]
public decimal KGS{ get; set; }
///
/// 尺码
///
[SugarColumn(ColumnName = "CBM")]
public decimal CBM{ get; set; }
///
/// 皮重
///
[SugarColumn(ColumnName = "TAREWEIGHT")]
public decimal TAREWEIGHT{ get; set; }
///
/// 箱状态
///
[SugarColumn(ColumnName = "CTNSTATUS")]
public string CTNSTATUS{ get; set; }
///
/// 称重方式
///
[SugarColumn(ColumnName = "WEIGHTYPE")]
public string WEIGHTYPE{ get; set; }
///
/// 称重重量
///
[SugarColumn(ColumnName = "WEIGHKGS")]
public decimal WEIGHKGS{ get; set; }
///
/// 称重联系人
///
[SugarColumn(ColumnName = "WEIGHATTN")]
public string WEIGHATTN{ get; set; }
}
}