From fbb49406e4c1523d5f3432fea3c142470ede851c Mon Sep 17 00:00:00 2001 From: "DESKTOP-G961P6V\\Zhh" <839860190@qq.com> Date: Fri, 17 May 2024 18:50:26 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BD=91=E4=B8=8A=E9=A2=84=E7=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../TransToWebPeisAppService.cs | 30 +++++++++++++++++-- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/src/Shentun.Peis.Application/TransToWebPeis/TransToWebPeisAppService.cs b/src/Shentun.Peis.Application/TransToWebPeis/TransToWebPeisAppService.cs index 601417e..4ed911b 100644 --- a/src/Shentun.Peis.Application/TransToWebPeis/TransToWebPeisAppService.cs +++ b/src/Shentun.Peis.Application/TransToWebPeis/TransToWebPeisAppService.cs @@ -13,6 +13,10 @@ namespace Shentun.Peis.TransToWebPeis public class TransToWebPeisAppService : ApplicationService { public TransToWebPeisAppService() { } + /// + /// 上传基础资料 + /// + /// [HttpGet("api/app/TransToWebPeis/TransBaseData")] public async Task TransBaseDataAsync() @@ -20,13 +24,19 @@ namespace Shentun.Peis.TransToWebPeis //item_type,item,asbitem,asbitem_detail,medical_package,medical_package_detail //diagnosis_level,diagnosis } - + /// + /// 上传单位信息 + /// + /// [HttpGet("api/app/TransToWebPeis/TransCustomerOrg")] public async Task TransCustomerOrgAsync() { //customer_org,customer_org_register } - + /// + /// 上传人员体检信息 + /// + /// [HttpGet("api/app/TransToWebPeis/TransPatientRegister")] public async Task TransPatientRegisterAsync() { @@ -34,11 +44,25 @@ namespace Shentun.Peis.TransToWebPeis //register_check_item,register_check_picture,register_check_summary,register_check_suggestion //sum_summary_header,sum_summary_content,sum_suggestion_header,sum_suggestion_content,sum_diagnosis, } - + /// + /// 根据人员登记ID上传人员体检信息 + /// + /// + /// [HttpGet("api/app/TransToWebPeis/TransPatientRegisterByPatientRegisterId")] public async Task TransPatientRegisterByPatientRegisterIdAsync(PatientRegisterIdInputDto input ) { + } + /// + /// 撤销上传人员体检信息 + /// + /// + /// + [HttpGet("api/app/TransToWebPeis/CancelTransPatientRegisterByPatientRegisterId")] + public async Task CancelTransPatientRegisterByPatientRegisterIdAsync(PatientRegisterIdInputDto input) + { + } } }