|
|
|
@ -0,0 +1,44 @@ |
|
|
|
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.Services; |
|
|
|
|
|
|
|
namespace Shentun.Peis.TransToWebPeis |
|
|
|
{ |
|
|
|
public class TransToWebPeisAppService : ApplicationService |
|
|
|
{ |
|
|
|
public TransToWebPeisAppService() { } |
|
|
|
|
|
|
|
[HttpGet("api/app/TransToWebPeis/TransBaseData")] |
|
|
|
public async Task TransBaseDataAsync() |
|
|
|
{ |
|
|
|
//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() |
|
|
|
{ |
|
|
|
//patient,patient_register,register_check,register_check_asbitem
|
|
|
|
//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,
|
|
|
|
} |
|
|
|
|
|
|
|
[HttpGet("api/app/TransToWebPeis/TransPatientRegisterByPatientRegisterId")] |
|
|
|
public async Task TransPatientRegisterByPatientRegisterIdAsync(PatientRegisterIdInputDto input ) |
|
|
|
{ |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |