同步字段增加

bsno可修改
master
wanghaomei 1 year ago
parent 73fc271b8c
commit 3fe3341e11

@ -12,7 +12,7 @@ namespace Myshipping.Application.Entity
public class BookingOrder : DBEntityTenant public class BookingOrder : DBEntityTenant
{ {
/// <summary> /// <summary>
/// 第三方系统编号 /// 第三方系统编号(客户订舱系统中的编号)
/// </summary> /// </summary>
//[Description("第三方系统编号")] //[Description("第三方系统编号")]
public string BSNO { get; set; } public string BSNO { get; set; }
@ -42,7 +42,7 @@ namespace Myshipping.Application.Entity
[Description("分提单号")] [Description("分提单号")]
public string HBLNO { get; set; } public string HBLNO { get; set; }
/// <summary> /// <summary>
/// 业务编号 /// 业务编号(订单编号)
/// </summary> /// </summary>
[Description("业务编号")] [Description("业务编号")]
public string BOOKINGNO { get; set; } public string BOOKINGNO { get; set; }

@ -972,7 +972,7 @@ namespace Myshipping.Application
{ {
it.ParentId, it.ParentId,
it.BSDATE, it.BSDATE,
it.BSNO, //it.BSNO,
it.TenantId, it.TenantId,
it.CreatedTime, it.CreatedTime,
it.CreatedUserId, it.CreatedUserId,

@ -56,7 +56,7 @@ namespace Myshipping.Application
public virtual string HBLNO { get; set; } public virtual string HBLNO { get; set; }
/// <summary> /// <summary>
/// 业务编号 /// 业务编号(订单编号)
/// </summary> /// </summary>
public virtual string BOOKINGNO { get; set; } public virtual string BOOKINGNO { get; set; }

@ -20,6 +20,10 @@ namespace Myshipping.Application.Service.BookingOrder.Dto
/// </summary> /// </summary>
public string MBLNO { get; set; } public string MBLNO { get; set; }
/// <summary> /// <summary>
/// 分提单号
/// </summary>
public string HBLNO { get; set; }
/// <summary>
/// 场站代码 /// 场站代码
/// </summary> /// </summary>
public string YARDID { get; set; } public string YARDID { get; set; }
@ -207,6 +211,28 @@ namespace Myshipping.Application.Service.BookingOrder.Dto
/// 箱高 /// 箱高
/// </summary> /// </summary>
public decimal CtrnHeight { get; set; } public decimal CtrnHeight { get; set; }
/// <summary>
/// 是否占舱
/// </summary>
public string ZhanCangFlag { get; set; }
/// <summary>
/// 申请箱使
/// </summary>
public string ShenQingXiangShi { get; set; }
/// <summary>
/// 中转港代码
/// </summary>
public string TRANSPORTID { get; set; }
/// <summary>
/// 中转港
/// </summary>
public string TRANSPORT { get; set; }
/// <summary>
/// 第三付款地
/// </summary>
public string THIRDPAYADDR { get; set; }
} }
/// <summary> /// <summary>

@ -3,8 +3,8 @@
"windowsAuthentication": false, "windowsAuthentication": false,
"anonymousAuthentication": true, "anonymousAuthentication": true,
"iisExpress": { "iisExpress": {
"applicationUrl": "http://localhost:63602/", "applicationUrl": "http://localhost:52082/",
"sslPort": 44337 "sslPort": 44350
} }
}, },
"profiles": { "profiles": {

Loading…
Cancel
Save