From 55039b2bc63afc3b1b8628ab99e1fc2709f1dfd7 Mon Sep 17 00:00:00 2001 From: wxd <123@qq.com> Date: Thu, 13 Jul 2023 13:43:29 +0800 Subject: [PATCH] 1 --- src/Shentun.Peis.Application.Contracts/Asbitems/AsbitemDto.cs | 2 +- .../CustomerOrgGroupDetailOrAsbitemDto.cs | 4 ++-- .../CustomerOrgGroupDetailOrAsbitemEntity.cs | 4 ++-- .../CustomerOrgGroupDetailRepository.cs | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) 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,