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.
71 lines
2.3 KiB
C#
71 lines
2.3 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_part_ctn", "海运出口舱单分票信息")]
|
|
public class SeaExportShippingBillPartCtn : BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 业务Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "业务Id", IsNullable = false)]
|
|
public long Pid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 分单号
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "分单号", IsNullable = true, Length = 30)]
|
|
public string HBLNO { 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; }
|
|
}
|
|
}
|