You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
3.0 KiB
C#
92 lines
3.0 KiB
C#
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.Op.Entity
|
|
{
|
|
/// <summary>
|
|
/// 海运出口舱单箱信息
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("op_sea_export_shippingbill_ctn", "海运出口舱单箱信息")]
|
|
public class SeaExportShippingBillCtn : BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 业务Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "业务Id", IsNullable = false)]
|
|
public long Pid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 尺寸
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "尺寸", IsNullable = true, Length = 3)]
|
|
public string Size { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "箱型", IsNullable = true, Length = 10)]
|
|
public string Ctn { get; set; }
|
|
/// <summary>
|
|
/// 箱型Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "箱型Id")]
|
|
public long CtnId { get; set; }
|
|
/// <summary>
|
|
/// 表现形式
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "表现形式", IsNullable = true, Length = 10)]
|
|
public string CtnAll { get; set; }
|
|
/// <summary>
|
|
/// 箱号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "箱号", IsNullable = true, Length = 30)]
|
|
public string CntrNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 封号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "封号", IsNullable = true, Length = 20)]
|
|
public string SealNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 件数
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "件数", IsNullable = true)]
|
|
public int? PKGS { get; set; }
|
|
/// <summary>
|
|
/// 毛重
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "毛重", IsNullable = true, Length = 18, DecimalDigits = 3, DefaultValue = "0")]
|
|
public decimal? KGS { get; set; }
|
|
|
|
/// <summary>
|
|
/// 尺码
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "尺码", IsNullable = true, Length = 18, DecimalDigits = 3, DefaultValue = "0")]
|
|
public decimal? CBM { get; set; }
|
|
/// <summary>
|
|
/// 包装Code
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "包装", IsNullable = true, Length = 20)]
|
|
public string KindPkgs { get; set; }
|
|
/// <summary>
|
|
/// 包装 t_code_package
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "包装", IsNullable = true, Length = 20)]
|
|
public string KindPkgsName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 海关代码
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "海关代码", Length = 50, IsNullable = true)]
|
|
public string HSCode { get; set; }
|
|
}
|
|
}
|