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.

96 lines
3.2 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_billmanage_ctn", "海运出口提单箱信息")]
public class SeaExportBillManageCtn : 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>
/// 箱量
/// </summary>
[SugarColumn(ColumnDescription = "箱量", IsNullable = true, DefaultValue = "0")]
public int? CtnNum { 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>
/// 箱皮重
/// </summary>
[SugarColumn(ColumnDescription = "箱皮重", IsNullable = true, Length = 18, DecimalDigits = 3, DefaultValue = "0")]
public decimal? TareWeight { get; set; }
/// <summary>
/// 包装Code
/// </summary>
2 months ago
[SugarColumn(ColumnDescription = "包装Code", IsNullable = true, Length = 50)]
public string KindPkgs { get; set; }
/// <summary>
/// 包装 t_code_package
/// </summary>
2 months ago
[SugarColumn(ColumnDescription = "包装", IsNullable = true, Length = 50)]
public string KindPkgsName { get; set; }
}
}