Browse Source

网上预约

bjmzak
DESKTOP-G961P6V\Zhh 2 years ago
parent
commit
fbb49406e4
  1. 30
      src/Shentun.Peis.Application/TransToWebPeis/TransToWebPeisAppService.cs

30
src/Shentun.Peis.Application/TransToWebPeis/TransToWebPeisAppService.cs

@ -13,6 +13,10 @@ namespace Shentun.Peis.TransToWebPeis
public class TransToWebPeisAppService : ApplicationService
{
public TransToWebPeisAppService() { }
/// <summary>
/// 上传基础资料
/// </summary>
/// <returns></returns>
[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
}
/// <summary>
/// 上传单位信息
/// </summary>
/// <returns></returns>
[HttpGet("api/app/TransToWebPeis/TransCustomerOrg")]
public async Task TransCustomerOrgAsync()
{
//customer_org,customer_org_register
}
/// <summary>
/// 上传人员体检信息
/// </summary>
/// <returns></returns>
[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,
}
/// <summary>
/// 根据人员登记ID上传人员体检信息
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
[HttpGet("api/app/TransToWebPeis/TransPatientRegisterByPatientRegisterId")]
public async Task TransPatientRegisterByPatientRegisterIdAsync(PatientRegisterIdInputDto input )
{
}
/// <summary>
/// 撤销上传人员体检信息
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
[HttpGet("api/app/TransToWebPeis/CancelTransPatientRegisterByPatientRegisterId")]
public async Task CancelTransPatientRegisterByPatientRegisterIdAsync(PatientRegisterIdInputDto input)
{
}
}
}
Loading…
Cancel
Save