|
|
|
@ -8,19 +8,13 @@ namespace DS.WMS.Core.Op.Entity;
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SqlSugar.SugarTable("op_sea_export", "海运出口表")]
|
|
|
|
|
public class SeaExport : BaseOrgModel<long>
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 业务编号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "业务编号", IsNullable = false, Length = 100)]
|
|
|
|
|
public string BSNO { get; set; }
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主票业务编号
|
|
|
|
|
/// 主单Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "主票业务编号", IsNullable = false, Length = 100)]
|
|
|
|
|
public string MasterNo { get; set; }
|
|
|
|
|
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "主单Id", IsNullable = false,DefaultValue = "0")]
|
|
|
|
|
public long ParentId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 业务状态
|
|
|
|
|
/// </summary>
|
|
|
|
@ -45,6 +39,17 @@ public class SeaExport : BaseOrgModel<long>
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "费用状态", IsNullable = false, DefaultValue = "0")]
|
|
|
|
|
public int FeeStatus { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:是否业务锁定
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "是否业务锁定", DefaultValue = "0")]
|
|
|
|
|
public bool? IsBusinessLocking { get; set; } = false;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:是否费用锁定
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "是否费用锁定", DefaultValue = "0")]
|
|
|
|
|
public bool? IsFeeLocking { get; set; } = false;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 录入日期
|
|
|
|
|
/// </summary>
|
|
|
|
@ -80,7 +85,11 @@ public class SeaExport : BaseOrgModel<long>
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "运单号", IsNullable = true, Length = 30)]
|
|
|
|
|
public string TransNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 委托单位Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "委托单位Id", IsNullable = false, DefaultValue = "0")]
|
|
|
|
|
public long CustomerId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 委托单位 t_info_client CUSTNAME
|
|
|
|
|
/// </summary>
|
|
|
|
@ -112,11 +121,15 @@ public class SeaExport : BaseOrgModel<long>
|
|
|
|
|
public long? NotifyPartyId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 国外代理人 t_info_client CUSTNAME
|
|
|
|
|
/// 国外代理人Id t_info_client CUSTNAME
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "国外代理人", IsNullable = true)]
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "国外代理人Id", IsNullable = true)]
|
|
|
|
|
public long? AgentId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 国外代理人 t_info_client CUSTNAME
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "国外代理人", IsNullable = true, Length = 600)]
|
|
|
|
|
public string Agent { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发货人内容
|
|
|
|
|
/// </summary>
|
|
|
|
@ -141,10 +154,15 @@ public class SeaExport : BaseOrgModel<long>
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "国外代理内容", IsNullable = true, Length = 600)]
|
|
|
|
|
public string AgentContent { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 场站Id t_crm_client CUSTNAME
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "场站Id", IsNullable = true, DefaultValue ="0")]
|
|
|
|
|
public long YardId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 场站 t_crm_client CUSTNAME
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "场站", IsNullable = true, Length = 20)]
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "场站", IsNullable = true, Length = 100)]
|
|
|
|
|
public string Yard { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -491,41 +509,68 @@ public class SeaExport : BaseOrgModel<long>
|
|
|
|
|
public long ForeignCustomerService { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 航线
|
|
|
|
|
/// 航线Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "航线", IsNullable = true, DefaultValue = "0")]
|
|
|
|
|
[SugarColumn(ColumnDescription = "航线Id", IsNullable = true, DefaultValue = "0")]
|
|
|
|
|
public long LaneId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 揽货人
|
|
|
|
|
/// 航线
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "揽货人", IsNullable = true, DefaultValue = "0")]
|
|
|
|
|
public long Sale { get; set; }
|
|
|
|
|
[SugarColumn(ColumnDescription = "航线", IsNullable = true, Length = 100 )]
|
|
|
|
|
public string Lane { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 揽货人Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "揽货人Id", IsNullable = true, DefaultValue = "0")]
|
|
|
|
|
public long SaleId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 揽货人
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "揽货人", IsNullable = true, Length = 100)]
|
|
|
|
|
public string Sale { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 船公司Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "船公司Id", IsNullable = true, DefaultValue = "0")]
|
|
|
|
|
public long CarrierId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 船公司
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "船公司", IsNullable = true, DefaultValue = "0")]
|
|
|
|
|
public long Carrier { get; set; }
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "船公司", IsNullable = true, Length = 100)]
|
|
|
|
|
public string Carrier { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 货代公司Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "货代公司Id", IsNullable = true, DefaultValue = "0")]
|
|
|
|
|
public long ForwarderId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 货代公司
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "货代公司", IsNullable = true, DefaultValue = "0")]
|
|
|
|
|
public long Forwarder { get; set; }
|
|
|
|
|
[SugarColumn(ColumnDescription = "货代公司", IsNullable = true, Length = 100)]
|
|
|
|
|
public string Forwarder { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 报关行Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "报关行Id", IsNullable = true, DefaultValue = "0")]
|
|
|
|
|
public long CustomserId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 报关行
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "报关行", IsNullable = true, DefaultValue = "0")]
|
|
|
|
|
public long Customser { get; set; }
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "报关行", IsNullable = true, Length = 100)]
|
|
|
|
|
public string Customser { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 承运车队Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "承运车队Id", IsNullable = true, DefaultValue = "0")]
|
|
|
|
|
public long TruckerId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 承运车队
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "承运车队", IsNullable = true, DefaultValue = "0")]
|
|
|
|
|
public long Trucker { get; set; }
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "承运车队", IsNullable = true, Length = 100)]
|
|
|
|
|
public string Trucker { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发票号
|
|
|
|
@ -759,8 +804,8 @@ public class SeaExport : BaseOrgModel<long>
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:单证
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "单证", IsNullable = true, Length = 10)]
|
|
|
|
|
public string Doc { get; set; }
|
|
|
|
|
[SugarColumn(ColumnDescription = "单证", IsNullable = true, DefaultValue = "0")]
|
|
|
|
|
public long Doc { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:装箱类型
|
|
|
|
@ -817,6 +862,12 @@ public class SeaExport : BaseOrgModel<long>
|
|
|
|
|
[SugarColumn(ColumnDescription = "委托方式", IsNullable = true, Length = 10)]
|
|
|
|
|
public string OrderType { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:订舱编号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "订舱编号", IsNullable = true, Length = 100)]
|
|
|
|
|
public string OrderNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:操作员代码
|
|
|
|
|
/// </summary>
|
|
|
|
@ -988,6 +1039,11 @@ public class SeaExport : BaseOrgModel<long>
|
|
|
|
|
[SugarColumn(ColumnDescription = "报检项目", Length = 20, IsNullable = true)]
|
|
|
|
|
public string InsperctService { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 船代
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SqlSugar.SugarColumn(ColumnDescription = "船代", IsNullable = true,Length = 100)]
|
|
|
|
|
public long ShipAgency { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 船代Id
|
|
|
|
|
/// </summary>
|
|
|
|
|