From 9d4471d321de333d38cae2a051f16a0dee81da3b Mon Sep 17 00:00:00 2001 From: "DESKTOP-G961P6V\\Zhh" <839860190@qq.com> Date: Mon, 10 Jun 2024 17:16: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 --- .../AppointPatientRegisters/AppointPatientRegisterDto.cs | 4 ++++ .../AppointPatientRegisterAppService.cs | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/src/Shentun.WebPeis.Application.Contracts/AppointPatientRegisters/AppointPatientRegisterDto.cs b/src/Shentun.WebPeis.Application.Contracts/AppointPatientRegisters/AppointPatientRegisterDto.cs index 8b04139..0731ead 100644 --- a/src/Shentun.WebPeis.Application.Contracts/AppointPatientRegisters/AppointPatientRegisterDto.cs +++ b/src/Shentun.WebPeis.Application.Contracts/AppointPatientRegisters/AppointPatientRegisterDto.cs @@ -29,6 +29,10 @@ namespace Shentun.WebPeis.AppointPatientRegisters /// public string? IdNo { get; set; } /// + /// 手机号码 + /// + public string? MobileTelephone { get; set; } + /// /// 性别ID /// public char SexId { get; set; } diff --git a/src/Shentun.WebPeis.Application/AppointPatientRegisters/AppointPatientRegisterAppService.cs b/src/Shentun.WebPeis.Application/AppointPatientRegisters/AppointPatientRegisterAppService.cs index fc33cb2..27c3eb2 100644 --- a/src/Shentun.WebPeis.Application/AppointPatientRegisters/AppointPatientRegisterAppService.cs +++ b/src/Shentun.WebPeis.Application/AppointPatientRegisters/AppointPatientRegisterAppService.cs @@ -131,6 +131,7 @@ namespace Shentun.WebPeis.AppointPatientRegisters /// /// /// + [AllowAnonymous] [HttpPost("api/app/AppointPatientRegister/GetListByFilter")] public async Task> GetListByFilterAsync(AppointPatientRegisterInputDto input) { @@ -238,6 +239,7 @@ namespace Shentun.WebPeis.AppointPatientRegisters PersonId = o.FirstOrDefault().appointPatientRegister.PersonId, PersonName = o.FirstOrDefault().user.Name, IdNo = o.FirstOrDefault().person.IdNo, + MobileTelephone = o.FirstOrDefault().user.PhoneNumber, SexId = o.FirstOrDefault().person.SexId, MaritalStatusId = o.FirstOrDefault().person.MaritalStatusId, CustomerOrgId = o.FirstOrDefault().appointPatientRegister.CustomerOrgId, @@ -380,6 +382,7 @@ namespace Shentun.WebPeis.AppointPatientRegisters /// /// /// + [AllowAnonymous] [HttpPost("api/app/AppointPatientRegister/GetAppointRegisterAsbitemListById")] public async Task> GetAppointRegisterAsbitemListByIdAsync(AppointPatientRegisterIdInputDto input) { @@ -406,6 +409,7 @@ namespace Shentun.WebPeis.AppointPatientRegisters ItemTypeId = itemType.ItemTypeId, ItemTypeName = itemType.ItemTypeName, ItemTypeDisplayOrder = itemType.DisplayOrder, + PayTypeFlag = appointRegisterAsbitem.PayTypeFlag } ).ToList();