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.

108 lines
3.5 KiB
C#

using DS.Module.Core.Data;
using SqlSugar;
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_booking_slot_ctn", "舱位集装箱管理")]
public class BookingSlotCtn : BaseModel<long>
{
/// <summary>
/// 舱位主键
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "舱位主键", IsNullable = false)]
public long SlotId { get; set; }
/// <summary>
/// 箱型代码
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "箱型代码", Length = 10, IsNullable = true)]
public string CtnCode { get; set; }
/// <summary>
/// 箱型名称
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "箱型名称", Length = 20, IsNullable = true)]
public string CtnAll { get; set; }
/// <summary>
/// 箱量
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "箱量", IsNullable = true, DefaultValue = "0")]
public int CtnNum { get; set; }
/// <summary>
/// 箱号
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "箱号", Length = 30, IsNullable = true)]
public string CNTRNo { get; set; }
/// <summary>
/// 箱封号
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "箱封号", Length = 20, IsNullable = true)]
public string SealNo { get; set; }
/// <summary>
/// 件数
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "件数", IsNullable = true)]
public Nullable<int> PKGS { get; set; }
/// <summary>
/// 包装
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "件数", Length = 20, IsNullable = true)]
public string KindPKGs { get; set; }
/// <summary>
/// 毛重
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "毛重", Length = 18, DecimalDigits = 4, IsNullable = true)]
public Nullable<decimal> KGS { get; set; }
/// <summary>
/// 尺码
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "尺码", Length = 18, DecimalDigits = 4, IsNullable = true)]
public Nullable<decimal> CBM { get; set; }
/// <summary>
/// 皮重
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "皮重", Length = 18, DecimalDigits = 4, IsNullable = true)]
public Nullable<decimal> TareWeight { get; set; }
/// <summary>
/// 箱状态
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "箱状态", Length = 10, IsNullable = true)]
public string CtnStatus { get; set; }
/// <summary>
/// 称重方式
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "称重方式", Length = 30, IsNullable = true)]
public string WeighType { get; set; }
/// <summary>
/// 称重重量
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "称重重量", Length = 18, DecimalDigits = 4, IsNullable = true)]
public Nullable<decimal> WeighKGS { get; set; }
/// <summary>
/// 称重联系人
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "称重联系人", Length = 30, IsNullable = true)]
public string WeighAttn { get; set; }
}
}