From 542dcb745c9b60814e22454d2408a73f0770859f Mon Sep 17 00:00:00 2001 From: "DESKTOP-G961P6V\\Zhh" <839860190@qq.com> Date: Thu, 6 Jun 2024 01:18:38 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=84=E7=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PatientRegisters/PatientRegisterDto.cs | 2 +- .../AppointPatientRegisters/AppointPatientRegisterAppService.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Shentun.WebPeis.Application.Contracts/PatientRegisters/PatientRegisterDto.cs b/src/Shentun.WebPeis.Application.Contracts/PatientRegisters/PatientRegisterDto.cs index a88b4af..a88f3e3 100644 --- a/src/Shentun.WebPeis.Application.Contracts/PatientRegisters/PatientRegisterDto.cs +++ b/src/Shentun.WebPeis.Application.Contracts/PatientRegisters/PatientRegisterDto.cs @@ -47,7 +47,7 @@ namespace Shentun.WebPeis.PatientRegisters /// public Guid? MedicalPackageId { get; set; } public string? MedicalPackageName { get; set; } - public decimal? ChargeMoney { get; set; } + public decimal? Price { get; set; } /// /// 姓名 diff --git a/src/Shentun.WebPeis.Application/AppointPatientRegisters/AppointPatientRegisterAppService.cs b/src/Shentun.WebPeis.Application/AppointPatientRegisters/AppointPatientRegisterAppService.cs index 12873dd..be033cc 100644 --- a/src/Shentun.WebPeis.Application/AppointPatientRegisters/AppointPatientRegisterAppService.cs +++ b/src/Shentun.WebPeis.Application/AppointPatientRegisters/AppointPatientRegisterAppService.cs @@ -469,7 +469,7 @@ namespace Shentun.WebPeis.AppointPatientRegisters CustomerOrgRegisterId = patientRegister.CustomerOrgRegisterId, CustomerOrgGroupId = patientRegister.CustomerOrgGroupId, CustomerOrgGroupName = haveCustomerOrgGroup == null?"": haveCustomerOrgGroup.CustomerOrgGroupName, - ChargeMoney = haveCustomerOrgGroup == null ? 0:haveCustomerOrgGroup.Price + Price = haveCustomerOrgGroup == null ? 0:haveCustomerOrgGroup.Price }).FirstOrDefault(); if (patientRegisterDto == null) {