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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using System ;
using System.Collections.Generic ;
using SqlSugar ;
using Myshipping.Core.Entity ;
using System.ComponentModel ;
namespace Myshipping.Application
{
/// <summary>
/// 舱位管理主信息
/// </summary>
[SugarTable("booking_slot_base", TableDescription = "舱位管理主信息")]
public class BookingSlotChangeRecord : DBEntityTenant
{
/// <summary>
/// 舱位主键
/// </summary>
[SugarColumn(ColumnName = "SLOT_ID")]
[Description("舱位主键")]
public Nullable < long > SLOT_ID { get ; set ; }
/// <summary>
/// 订单主键
/// </summary>
[SugarColumn(ColumnName = "BOOKING_ID")]
[Description("订单主键")]
public Nullable < long > BOOKING_ID { get ; set ; }
/// <summary>
/// 变更类型标记 BEFORE-变更前, CURRENT-变更后
/// </summary>
[SugarColumn(ColumnName = "CHANGE_FLAG")]
[Description("变更类型标记")]
public string CHANGE_FLAG { get ; set ; }
/// <summary>
/// 变更范围类型 SINGLE-单票变更,ALLSHIP-整船变更(例如截止时间变更)
/// </summary>
[SugarColumn(ColumnName = "CHANGE_RANGE")]
[Description("变更类型标记")]
public string CHANGE_RANGE { get ; set ; }
/// <summary>
/// 主提单号
/// </summary>
[SugarColumn(ColumnName = "MBL_NO")]
[Description("主提单号")]
public string MBL_NO { get ; set ; }
/// <summary>
/// 真提单号
/// </summary>
[SugarColumn(ColumnName = "REAL_MBL_NO")]
[Description("真提单号")]
public string REAL_MBL_NO { get ; set ; }
/// <summary>
/// 合约号
/// </summary>
[SugarColumn(ColumnName = "CONTRACT_NO")]
[Description("合约号")]
public string CONTRACT_NO { get ; set ; }
/// <summary>
/// 订舱抬头
/// </summary>
[SugarColumn(ColumnName = "BOOKING_PARTY")]
[Description("订舱抬头")]
public string BOOKING_PARTY { get ; set ; }
}
}