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.
|
|
|
|
using Myshipping.Core.Entity;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 舱位需求预报记录箱信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("booking_slot_demand_ctn", TableDescription = "舱位需求预报记录箱信息")]
|
|
|
|
|
public class BookingSlotDemandCtn : DBEntityTenant
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 舱位需求预报记录ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long DemandId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 箱型代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CTNCODE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 箱型名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CTNALL { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 箱量
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int CTNNUM { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|