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
{
///
/// 业务派车箱信息
///
[SugarTable("op_business_truck_ctn", "业务派车箱信息")]
public class BusinessTruckCtn : BaseModel
{
///
/// 业务Id
///
[SugarColumn(ColumnDescription = "业务Id", IsNullable = false)]
public long Pid { get; set; }
///
/// 箱型Id
///
[SugarColumn(ColumnDescription = "箱型Id")]
public long CtnId { get; set; }
///
/// 箱型代码
///
[SugarColumn(ColumnDescription = "箱型代码", IsNullable = true, Length = 4)]
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; }
///
/// 包装 t_code_package
///
[SugarColumn(ColumnDescription = "包装", IsNullable = true, Length = 20)]
public string KindPkgs { get; set; }
///
/// 包装 t_code_package
///
[SugarColumn(ColumnDescription = "包装", IsNullable = true, Length = 20)]
public string KindPkgsName { get; set; }
}
}