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.
77 lines
1.9 KiB
C#
77 lines
1.9 KiB
C#
using Myshipping.Core.Entity;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 舱位需求预报记录
|
|
/// </summary>
|
|
[SugarTable("booking_slot_demand", TableDescription = "舱位需求预报记录")]
|
|
public class BookingSlotDemand : DBEntityTenant
|
|
{
|
|
/// <summary>
|
|
/// 客户ID
|
|
/// </summary>
|
|
public long? CUSTOMERID { get; set; }
|
|
/// <summary>
|
|
/// 客户名称
|
|
/// </summary>
|
|
public string CUSTOMERNAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 装货港代码
|
|
/// </summary>
|
|
[Description("装货港代码")]
|
|
public string PORTLOADID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 装货港
|
|
/// </summary>
|
|
[Description("装货港")]
|
|
public string PORTLOAD { get; set; }
|
|
|
|
/// <summary>
|
|
/// 卸货港代码
|
|
/// </summary>
|
|
[Description("卸货港代码")]
|
|
public string PORTDISCHARGEID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 卸货港
|
|
/// </summary>
|
|
[Description("卸货港")]
|
|
public string PORTDISCHARGE { get; set; }
|
|
/// <summary>
|
|
/// 船公司代号
|
|
/// </summary>
|
|
[Description("船公司代号")]
|
|
public string CARRIERID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 船公司
|
|
/// </summary>
|
|
[Description("船公司")]
|
|
public string CARRIER { get; set; }
|
|
|
|
/// <summary>
|
|
/// 预计开船日期
|
|
/// </summary>
|
|
[Description("预计开船日期")]
|
|
public DateTime? ETD { get; set; }
|
|
|
|
/// <summary>
|
|
/// 预计到港日期
|
|
/// </summary>
|
|
[Description("预计到港日期")]
|
|
public DateTime? ETA { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[Description("备注")]
|
|
public string REMARK { get; set; }
|
|
}
|
|
}
|