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) + { + } } }