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_detail", "集装箱多品名明细")]
public class OpCtnDetail : BaseModel
{
///
/// CtnId
///
[SugarColumn(ColumnDescription = "CtnId")]
public long CtnId { get; set; }
///
/// 件数
///
[SugarColumn(ColumnDescription = "件数", IsNullable = true)]
public int? PKGS { get; set; }
///
/// 毛重
///
[SugarColumn(ColumnDescription = "毛重", IsNullable = true, Length = 18, DecimalDigits = 4, DefaultValue = "0")]
public decimal? KGS { get; set; }
///
/// 尺码
///
[SugarColumn(ColumnDescription = "尺码", IsNullable = true, Length = 18, DecimalDigits = 4, DefaultValue = "0")]
public decimal? CBM { get; set; }
///
/// 包装 t_code_package
///
[SugarColumn(ColumnDescription = "包装", IsNullable = true, Length = 20)]
public string KindPkgs { get; set; }
///
/// 海关代码
///
[SugarColumn(ColumnDescription = "海关代码", Length = 50, IsNullable = true)]
public string HSCode { get; set; }
///
/// 唛头 N/M
///
[SugarColumn(ColumnDescription = "唛头", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string Marks
{
get; set;
}
///
/// 货物描述
///
[SugarColumn(ColumnDescription = "货物描述", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string Description
{
get; set;
}
}
}