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.
65 lines
2.2 KiB
C#
65 lines
2.2 KiB
C#
using DS.Module.Core.Data;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.Op.Entity
|
|
{
|
|
/// <summary>
|
|
/// 预订舱记录表箱信息
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("op_sea_space_booking_order_ctn", "预订舱记录表箱信息")]
|
|
public class SpaceBookingOrderCtn : BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 主记录ID
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "主记录ID", IsNullable = true)]
|
|
public long RecordId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 集装箱箱型
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "集装箱箱型", Length = 20, IsNullable = true)]
|
|
public string CtnCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 对应船公司箱型
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "对应船公司箱型", Length = 20, IsNullable = true)]
|
|
public string CarrierCtnCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱量
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "箱量", IsNullable = true)]
|
|
public Nullable<int> CtnNum { get; set; }
|
|
|
|
/// <summary>
|
|
/// 集装箱箱型名称
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "集装箱箱型名称", Length = 20, IsNullable = true)]
|
|
public string CtnName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱内货物重量
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "箱内货物重量", IsNullable = true)]
|
|
public Nullable<int> CtnSufferWeight { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱计量单位
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "箱计量单位", Length = 20, IsNullable = true)]
|
|
public string StuffingMeasurementType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 重量或者体积的计量单位
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "重量或者体积的计量单位", Length = 20, IsNullable = true)]
|
|
public string StuffingMeasurementUnit { get; set; }
|
|
}
|
|
}
|