7 changed files with 26 additions and 60 deletions
-
12src/Shentun.ColumnReferencePlugIns/WebAppoints/CreateWeChatOrderRefundDto.cs
-
2src/Shentun.ColumnReferencePlugIns/WebAppoints/WebAppointPlugInsBase.cs
-
8src/Shentun.ColumnReferencePlugIns/WebAppoints/WebAppointWebPeisPlugIns.cs
-
8src/Shentun.Peis.Application/AppointPatientRegisters/AppointPatientRegisterAppService.cs
-
3src/Shentun.Peis.Application/BigtextResultTemplates/BigtextResultTemplateAppService.cs
-
2src/Shentun.Peis.Application/OccupationalDiseaseReports/OccupationalDiseaseReportAppService.cs
-
51src/Shentun.Peis.Application/SmallProgramCharges/SmallProgramChargeAppService.cs
@ -0,0 +1,12 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Linq; |
||||
|
using System.Text; |
||||
|
using System.Threading.Tasks; |
||||
|
|
||||
|
namespace Shentun.Peis.PlugIns.WebAppoints |
||||
|
{ |
||||
|
public class CreateWeChatOrderRefundDto |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
@ -1,51 +0,0 @@ |
|||||
using Microsoft.AspNetCore.Authorization; |
|
||||
using Microsoft.AspNetCore.Mvc; |
|
||||
using Shentun.Peis.Models; |
|
||||
using Shentun.Peis.PatientRegisters; |
|
||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
using System.Linq; |
|
||||
using System.Text; |
|
||||
using System.Threading.Tasks; |
|
||||
using Volo.Abp.Application.Dtos; |
|
||||
using Volo.Abp.Application.Services; |
|
||||
using Volo.Abp.Domain.Repositories; |
|
||||
|
|
||||
namespace Shentun.Peis.SmallProgramCharges |
|
||||
{ |
|
||||
/// <summary>
|
|
||||
/// 小程序收费
|
|
||||
/// </summary>
|
|
||||
[ApiExplorerSettings(GroupName = "Work")] |
|
||||
[Authorize] |
|
||||
public class SmallProgramChargeAppService : ApplicationService |
|
||||
{ |
|
||||
private readonly IRepository<PatientRegister,Guid> _patientRegisterRepository; |
|
||||
private readonly IRepository<RegisterCheck,Guid> _registerCheckRepository; |
|
||||
private readonly IRepository<RegisterCheckAsbitem,Guid> _registerCheckAsbitemRepository; |
|
||||
|
|
||||
public SmallProgramChargeAppService( |
|
||||
IRepository<PatientRegister, Guid> patientRegisterRepository, |
|
||||
IRepository<RegisterCheck, Guid> registerCheckRepository, |
|
||||
IRepository<RegisterCheckAsbitem, Guid> registerCheckAsbitemRepository |
|
||||
) |
|
||||
{ |
|
||||
_patientRegisterRepository = patientRegisterRepository; |
|
||||
_registerCheckRepository = registerCheckRepository; |
|
||||
_registerCheckAsbitemRepository = registerCheckAsbitemRepository; |
|
||||
} |
|
||||
|
|
||||
|
|
||||
/// <summary>
|
|
||||
/// 获取小程序收费过的人员
|
|
||||
/// </summary>
|
|
||||
/// <returns></returns>
|
|
||||
[HttpPost("api/app/SmallProgramCharge/GetChargePatientRegisterList")] |
|
||||
public async Task<PagedResultDto<GetPatientRegisterChargeListDto>> GetChargePatientRegisterListAsync(PatientRegisterChargeRequestDto input) |
|
||||
{ |
|
||||
|
|
||||
} |
|
||||
|
|
||||
|
|
||||
} |
|
||||
} |
|
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue