diff --git a/Myshipping.Application/Service/BookingCustomerOrder/Dto/Dtos.cs b/Myshipping.Application/Service/BookingCustomerOrder/Dto/Dtos.cs
index f7867a9c..4f86177f 100644
--- a/Myshipping.Application/Service/BookingCustomerOrder/Dto/Dtos.cs
+++ b/Myshipping.Application/Service/BookingCustomerOrder/Dto/Dtos.cs
@@ -261,6 +261,21 @@ namespace Myshipping.Application
///
public string SOREMARK { get; set; }
+
+ ///
+ /// 箱长
+ ///
+ public decimal CtrnLength { get; set; }
+
+ ///
+ /// 箱宽
+ ///
+ public decimal CtrnWidth { get; set; }
+
+ ///
+ /// 箱高
+ ///
+ public decimal CtrnHeight { get; set; }
}
//保存dto
diff --git a/Myshipping.Application/Service/BookingOrder/Dto/BookingOrderDto.cs b/Myshipping.Application/Service/BookingOrder/Dto/BookingOrderDto.cs
index 985c9a9f..3ad1345d 100644
--- a/Myshipping.Application/Service/BookingOrder/Dto/BookingOrderDto.cs
+++ b/Myshipping.Application/Service/BookingOrder/Dto/BookingOrderDto.cs
@@ -811,6 +811,20 @@ namespace Myshipping.Application
/// 版本号
///
public string VERSION { get; set; }
+ ///
+ /// 箱长
+ ///
+ public decimal CtrnLength { get; set; }
+
+ ///
+ /// 箱宽
+ ///
+ public decimal CtrnWidth { get; set; }
+
+ ///
+ /// 箱高
+ ///
+ public decimal CtrnHeight { get; set; }
}
///
diff --git a/Myshipping.Application/Service/BookingOrder/Dto/SyncCustomerDto.cs b/Myshipping.Application/Service/BookingOrder/Dto/SyncCustomerDto.cs
index 1fb0fc8c..1032ae79 100644
--- a/Myshipping.Application/Service/BookingOrder/Dto/SyncCustomerDto.cs
+++ b/Myshipping.Application/Service/BookingOrder/Dto/SyncCustomerDto.cs
@@ -172,6 +172,21 @@ namespace Myshipping.Application.Service.BookingOrder.Dto
///
public string LANENAME { get; set; }
+
+ ///
+ /// 箱长
+ ///
+ public decimal CtrnLength { get; set; }
+
+ ///
+ /// 箱宽
+ ///
+ public decimal CtrnWidth { get; set; }
+
+ ///
+ /// 箱高
+ ///
+ public decimal CtrnHeight { get; set; }
}
///
@@ -233,6 +248,43 @@ namespace Myshipping.Application.Service.BookingOrder.Dto
/// 皮重
///
public decimal? TAREWEIGHT { get; set; }
+
+ ///
+ /// 箱状态
+ ///
+ public string CTNSTATUS { get; set; }
+ ///
+ /// 称重方式
+ ///
+ public string WEIGHTYPE { get; set; }
+ ///
+ /// 称重重量
+ ///
+ public decimal? WEIGHKGS { get; set; }
+ ///
+ /// 称重联系人
+ ///
+ public string WEIGHATTN { get; set; }
+ ///
+ /// VGM联系公司
+ ///
+ public string VGMCONNCOM { get; set; }
+ ///
+ /// VGM联系电话
+ ///
+ public string WEIGHTEL { get; set; }
+ ///
+ /// 称重日期
+ ///
+ public string WEIGHDATE { get; set; }
+ ///
+ /// VGM地址
+ ///
+ public string VGMADDR { get; set; }
+ ///
+ /// VGM邮箱
+ ///
+ public string VGMEMAIL { get; set; }
}
///