|
|
@ -13,6 +13,10 @@ namespace Shentun.Peis.TransToWebPeis |
|
|
public class TransToWebPeisAppService : ApplicationService |
|
|
public class TransToWebPeisAppService : ApplicationService |
|
|
{ |
|
|
{ |
|
|
public TransToWebPeisAppService() { } |
|
|
public TransToWebPeisAppService() { } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 上传基础资料
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
|
|
|
[HttpGet("api/app/TransToWebPeis/TransBaseData")] |
|
|
[HttpGet("api/app/TransToWebPeis/TransBaseData")] |
|
|
public async Task TransBaseDataAsync() |
|
|
public async Task TransBaseDataAsync() |
|
|
@ -20,13 +24,19 @@ namespace Shentun.Peis.TransToWebPeis |
|
|
//item_type,item,asbitem,asbitem_detail,medical_package,medical_package_detail
|
|
|
//item_type,item,asbitem,asbitem_detail,medical_package,medical_package_detail
|
|
|
//diagnosis_level,diagnosis
|
|
|
//diagnosis_level,diagnosis
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 上传单位信息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
[HttpGet("api/app/TransToWebPeis/TransCustomerOrg")] |
|
|
[HttpGet("api/app/TransToWebPeis/TransCustomerOrg")] |
|
|
public async Task TransCustomerOrgAsync() |
|
|
public async Task TransCustomerOrgAsync() |
|
|
{ |
|
|
{ |
|
|
//customer_org,customer_org_register
|
|
|
//customer_org,customer_org_register
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 上传人员体检信息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
[HttpGet("api/app/TransToWebPeis/TransPatientRegister")] |
|
|
[HttpGet("api/app/TransToWebPeis/TransPatientRegister")] |
|
|
public async Task TransPatientRegisterAsync() |
|
|
public async Task TransPatientRegisterAsync() |
|
|
{ |
|
|
{ |
|
|
@ -34,11 +44,25 @@ namespace Shentun.Peis.TransToWebPeis |
|
|
//register_check_item,register_check_picture,register_check_summary,register_check_suggestion
|
|
|
//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,
|
|
|
//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")] |
|
|
[HttpGet("api/app/TransToWebPeis/TransPatientRegisterByPatientRegisterId")] |
|
|
public async Task TransPatientRegisterByPatientRegisterIdAsync(PatientRegisterIdInputDto input ) |
|
|
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) |
|
|
|
|
|
{ |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |