diff --git a/src/Shentun.Peis.Application.Contracts/Asbitems/AsbitemDto.cs b/src/Shentun.Peis.Application.Contracts/Asbitems/AsbitemDto.cs
index af1d092..cf8abe5 100644
--- a/src/Shentun.Peis.Application.Contracts/Asbitems/AsbitemDto.cs
+++ b/src/Shentun.Peis.Application.Contracts/Asbitems/AsbitemDto.cs
@@ -31,7 +31,7 @@ namespace Shentun.Peis.Asbitems
 
 
         /// 
-        /// 价格
+        /// 标准价格
         /// 
         public decimal Price { get; set; }
 
diff --git a/src/Shentun.Peis.Application.Contracts/CustomerOrgGroupDetails/CustomerOrgGroupDetailOrAsbitemDto.cs b/src/Shentun.Peis.Application.Contracts/CustomerOrgGroupDetails/CustomerOrgGroupDetailOrAsbitemDto.cs
index 6dd89d6..f0422f9 100644
--- a/src/Shentun.Peis.Application.Contracts/CustomerOrgGroupDetails/CustomerOrgGroupDetailOrAsbitemDto.cs
+++ b/src/Shentun.Peis.Application.Contracts/CustomerOrgGroupDetails/CustomerOrgGroupDetailOrAsbitemDto.cs
@@ -20,9 +20,9 @@ namespace Shentun.Peis.CustomerOrgGroupDetails
 
 
         /// 
-        /// 分组价格
+        /// 团检分组包含的组合项目自定义价格
         /// 
-        public decimal CustomerOrgGroupPrice { get; set; }
+        public decimal CustomerOrgGroupDetailPrice { get; set; }
 
 
         /// 
diff --git a/src/Shentun.Peis.Domain/CustomerOrgGroupDetails/CustomerOrgGroupDetailOrAsbitemEntity.cs b/src/Shentun.Peis.Domain/CustomerOrgGroupDetails/CustomerOrgGroupDetailOrAsbitemEntity.cs
index 7df954a..8451278 100644
--- a/src/Shentun.Peis.Domain/CustomerOrgGroupDetails/CustomerOrgGroupDetailOrAsbitemEntity.cs
+++ b/src/Shentun.Peis.Domain/CustomerOrgGroupDetails/CustomerOrgGroupDetailOrAsbitemEntity.cs
@@ -22,9 +22,9 @@ namespace Shentun.Peis.CustomerOrgGroupDetails
 
 
         /// 
-        /// 分组价格
+        /// 团检分组包含的组合项目自定义价格
         /// 
-        public decimal CustomerOrgGroupPrice { get; set; }
+        public decimal CustomerOrgGroupDetailPrice { get; set; }
 
 
         public decimal Discount { get; set; }
diff --git a/src/Shentun.Peis.EntityFrameworkCore/CustomerOrgGroupDetails/CustomerOrgGroupDetailRepository.cs b/src/Shentun.Peis.EntityFrameworkCore/CustomerOrgGroupDetails/CustomerOrgGroupDetailRepository.cs
index 8b732d1..c673201 100644
--- a/src/Shentun.Peis.EntityFrameworkCore/CustomerOrgGroupDetails/CustomerOrgGroupDetailRepository.cs
+++ b/src/Shentun.Peis.EntityFrameworkCore/CustomerOrgGroupDetails/CustomerOrgGroupDetailRepository.cs
@@ -42,7 +42,7 @@ namespace Shentun.Peis.CustomerOrgGroupDetails
                             Discount = (a.Price * 100 / b.Price) == 0 ? 100 : Math.Round(a.Price * 100 / b.Price, 2),
                             CustomerOrgGroupId = a.CustomerOrgGroupId,
                             AsbitemId = a.AsbitemId,
-                            CustomerOrgGroupPrice = a.Price,
+                            CustomerOrgGroupDetailPrice = a.Price,
                             ClinicalMeaning = b.ClinicalMeaning,
                             Id = b.Id,
                             Price = b.Price,