新增表

master^2
jianghaiqing 1 week ago
parent 554d4cdcbf
commit cbdc6abdae

@ -0,0 +1,71 @@
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; }
}
}

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
public class BookingSlotChangeRecordNotify
{
}
}

@ -26,6 +26,7 @@
<Compile Remove="Service\BookingCtn\BookingCtnService.cs" />
<Compile Remove="Service\BookingCtn\IBookingCtnService.cs" />
<Compile Remove="Service\TaskManagePlat\Dtos\TaskManageOrderVGMFeedBackInfo.cs" />
<Compile Remove="Service\TrackingSystem\Dtos\QueryTaskManageBaseDto.cs" />
</ItemGroup>
<ItemGroup>

Loading…
Cancel
Save