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();