diff --git a/web/djy.Model/Isf/ISF_Master.cs b/web/djy.Model/Isf/ISF_Master.cs
index c500143..d2927b9 100644
--- a/web/djy.Model/Isf/ISF_Master.cs
+++ b/web/djy.Model/Isf/ISF_Master.cs
@@ -103,5 +103,12 @@ namespace djy.Model.Isf
/// 最新通知
///
public string NewNotice { get; set; }
+ ///
+ /// bond是否自有; =2(ISF10)时,需提供;
+ ///
值是:1或者2或者3;
+ ///
1表示“自有BOND”,2表示“使用CargoEDI的BOND”,3表示“使用大简云的Bond”
+ ///
+ [MaxLength(20)]
+ public string BondOwnCode { get; set; }
}
}
diff --git a/web/djy.Model/IsfDto/ISFDto.cs b/web/djy.Model/IsfDto/ISFDto.cs
index cfde64d..41062cd 100644
--- a/web/djy.Model/IsfDto/ISFDto.cs
+++ b/web/djy.Model/IsfDto/ISFDto.cs
@@ -98,6 +98,14 @@ namespace djy.Model.IsfDto
/// 最新通知
///
public string NewNotice { get; set; }
+
+ ///
+ /// bond是否自有; =2(ISF10)时,需提供;
+ ///
值是:1或者2或者3;
+ ///
1表示“自有BOND”,2表示“使用CargoEDI的BOND”,3表示“使用大简云的Bond”
+ ///
+ public string BondOwnCode { get; set; }
+
public List companyList { get; set; }
public List HistoryDto { get; set; }
diff --git a/web/djy.Service/ISF/IsfService.cs b/web/djy.Service/ISF/IsfService.cs
index e296760..652c908 100644
--- a/web/djy.Service/ISF/IsfService.cs
+++ b/web/djy.Service/ISF/IsfService.cs
@@ -163,6 +163,7 @@ namespace djy.Service.Isf
master.BlTypeName = dto.BlTypeName;
master.NewNotice = "修改";
master.LastUpdate = DateTime.Now;
+ master.BondOwnCode = dto.BondOwnCode;
DbBus.Get(DbList.AMSCenter).Update().SetSource(master).ExecuteAffrows();
DbBus.Get(DbList.AMSCenter).Delete().Where(w => w.PID == master.GID).ExecuteAffrows();
//ISF_MasterHistory history = new ISF_MasterHistory();