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.
BookingHeChuan/Myshipping.Application/Entity/BookingOrderSeaeEdiCtn.cs

60 lines
1.5 KiB
C#

2 years ago
using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Application.Entity
{
/// <summary>
/// 舱单箱信息表
/// </summary>
[SugarTable("booking_seae_edi_ctn")]
[Description("舱单箱信息表")]
public class BookingOrderSeaeEdiCtn : DBEntityTenant
{
/// <summary>
/// 舱单id
/// </summary>
public long PId { get; set; }
/// <summary>
/// 尺寸
/// </summary>
public string SIZE { get; set; }
2 years ago
/// <summary>
/// 表现形式 箱型
/// </summary>
public string CTNALL { get; set; }
2 years ago
/// <summary>
/// 集装箱箱型
/// </summary>
public string CTN { get; set; }
/// <summary>
/// 箱号
/// </summary>
public string CNTRNO { get; set; }
/// <summary>
/// 封号
/// </summary>
public string SEALNO { get; set; }
/// <summary>
/// 件数
/// </summary>
public int? PKGS { get; set; }
/// <summary>
2 years ago
/// 包装EDI
2 years ago
/// </summary>
public string KINDPKGS { get; set; }
/// <summary>
2 years ago
/// 包装
/// </summary>
public string KINDPKGSName { get; set; }
/// <summary>
2 years ago
/// 重量
/// </summary>
public decimal? KGS { get; set; }
/// <summary>
/// 尺码
/// </summary>
public decimal? CBM { get; set; }
}
}