diff --git a/Myshipping.Application/Entity/BookingSoTemplate/BookingSoTemplate.cs b/Myshipping.Application/Entity/BookingSoTemplate/BookingSoTemplate.cs
index 8a2e73cd..e7f01e08 100644
--- a/Myshipping.Application/Entity/BookingSoTemplate/BookingSoTemplate.cs
+++ b/Myshipping.Application/Entity/BookingSoTemplate/BookingSoTemplate.cs
@@ -536,5 +536,97 @@ namespace Myshipping.Application.Entity
[Description("结束周数")]
public int? EndWeek { get; set; }
+
+ ///
+ /// 合约类型
+ ///
+ [SugarColumn(ColumnName = "ContractType")]
+ [Description("合约类型")]
+ public string ContractType { get; set; }
+
+ ///
+ /// 签约方
+ ///
+ [SugarColumn(ColumnName = "SignType")]
+ [Description("签约方")]
+ public string SignType { get; set; }
+
+ ///
+ /// 退舱网点
+ ///
+ [SugarColumn(ColumnName = "CancelAddr")]
+ [Description("退舱网点")]
+ public string CancelAddr { get; set; }
+
+ ///
+ /// 提单签发地
+ ///
+ [SugarColumn(ColumnName = "BillSignLoc")]
+ [Description("提单签发地")]
+ public string BillSignLoc { get; set; }
+
+ ///
+ /// 提单数量
+ ///
+ [SugarColumn(ColumnName = "BillCount")]
+ [Description("提单数量")]
+ public int? BillCount { get; set; }
+
+ ///
+ /// 发货人性别
+ ///
+ [SugarColumn(ColumnName = "ShipperSex")]
+ [Description("发货人性别")]
+ public string ShipperSex { get; set; }
+
+ ///
+ /// 收货人性别
+ ///
+ [SugarColumn(ColumnName = "ConsigneeSex")]
+ [Description("收货人性别")]
+ public string ConsigneeSex { get; set; }
+
+ ///
+ /// 通知人性别
+ ///
+ [SugarColumn(ColumnName = "NotifypartSex")]
+ [Description("通知人性别")]
+ public string NotifypartSex { get; set; }
+
+ ///
+ /// 订舱公司性别
+ ///
+ [SugarColumn(ColumnName = "BookingSex")]
+ [Description("订舱公司性别")]
+ public string BookingSex { get; set; }
+
+ ///
+ /// 发货人内参号码
+ ///
+ [SugarColumn(ColumnName = "ShipperInnerCode")]
+ [Description("发货人内参号码")]
+ public string ShipperInnerCode { get; set; }
+
+ ///
+ /// 收货人内参号码
+ ///
+ [SugarColumn(ColumnName = "ConsigneeInnerCode")]
+ [Description("收货人内参号码")]
+ public string ConsigneeInnerCode { get; set; }
+
+ ///
+ /// 通知人内参号码
+ ///
+ [SugarColumn(ColumnName = "NotifypartInnerCode")]
+ [Description("通知人内参号码")]
+ public string NotifypartInnerCode { get; set; }
+
+ ///
+ /// 订舱公司内参号码
+ ///
+ [SugarColumn(ColumnName = "BookingInnerCode")]
+ [Description("订舱公司内参号码")]
+ public string BookingInnerCode { get; set; }
+
}
}
\ No newline at end of file
diff --git a/Myshipping.Application/Service/BookingSoTemplate/Dto/BookingSoTemplateDto.cs b/Myshipping.Application/Service/BookingSoTemplate/Dto/BookingSoTemplateDto.cs
index f9831066..88cd1b5e 100644
--- a/Myshipping.Application/Service/BookingSoTemplate/Dto/BookingSoTemplateDto.cs
+++ b/Myshipping.Application/Service/BookingSoTemplate/Dto/BookingSoTemplateDto.cs
@@ -382,6 +382,72 @@ namespace Myshipping.Application
/// 结束周数
///
public int? EndWeek { get; set; }
+
+
+ ///
+ /// 合约类型
+ ///
+ public string ContractType { get; set; }
+
+ ///
+ /// 签约方
+ ///
+ public string SignType { get; set; }
+
+ ///
+ /// 退舱网点
+ ///
+ public string CancelAddr { get; set; }
+
+ ///
+ /// 提单签发地
+ ///
+ public string BillSignLoc { get; set; }
+
+ ///
+ /// 提单数量
+ ///
+ public int? BillCount { get; set; }
+
+ ///
+ /// 发货人性别
+ ///
+ public string ShipperSex { get; set; }
+
+ ///
+ /// 收货人性别
+ ///
+ public string ConsigneeSex { get; set; }
+
+ ///
+ /// 通知人性别
+ ///
+ public string NotifypartSex { get; set; }
+
+ ///
+ /// 订舱公司性别
+ ///
+ public string BookingSex { get; set; }
+
+ ///
+ /// 发货人内参号码
+ ///
+ public string ShipperInnerCode { get; set; }
+
+ ///
+ /// 收货人内参号码
+ ///
+ public string ConsigneeInnerCode { get; set; }
+
+ ///
+ /// 通知人内参号码
+ ///
+ public string NotifypartInnerCode { get; set; }
+
+ ///
+ /// 订舱公司内参号码
+ ///
+ public string BookingInnerCode { get; set; }
}
///