|
@ -34,6 +34,13 @@ public class DoctorDoorServiceAuditController extends EnvelopRestEndpoint {
|
|
|
private BasePatientService patientService;
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 参数:
|
|
|
* auditorType: 2
|
|
|
* status: 0
|
|
|
* page: 1
|
|
|
* pageSize: 15
|
|
|
*/
|
|
|
@RequestMapping(value = "getPOnsiteServiceByDoctor", method = RequestMethod.GET)
|
|
|
@ApiOperation(value = "获取待审核的居民上门服务资质申请")
|
|
|
public Envelop getPOnsiteServiceByDoctor(
|
|
@ -60,8 +67,8 @@ public class DoctorDoorServiceAuditController extends EnvelopRestEndpoint {
|
|
|
@RequestMapping(value = "getDoorSericeApplicationStatus", method = RequestMethod.GET)
|
|
|
@ApiOperation(value = "获取资质审核状态")
|
|
|
public Envelop getDoorSericeApplicationStatus(
|
|
|
@ApiParam(name = "patient", value = "patient")
|
|
|
@RequestParam(value = "patient", required = true) String patient) {
|
|
|
@ApiParam(name = "patient", value = "patient") @RequestParam(value = "patient", required = true) String patient
|
|
|
) {
|
|
|
try {
|
|
|
return success("获取成功", doorServiceApplicationService.getDoorSericeApplicationStatus(patient));
|
|
|
} catch (Exception ex) {
|
|
@ -94,6 +101,10 @@ public class DoctorDoorServiceAuditController extends EnvelopRestEndpoint {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数:
|
|
|
* id=9e1204850bf4437e8ebf2c182db34f0e
|
|
|
*/
|
|
|
@RequestMapping(value = "getPOnsiteServiceById", method = RequestMethod.GET)
|
|
|
@ApiOperation(value = "获取居民上门服务资质申请详情")
|
|
|
public Envelop getPOnsiteServiceById(
|
|
@ -142,6 +153,16 @@ public class DoctorDoorServiceAuditController extends EnvelopRestEndpoint {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 代审核
|
|
|
* 参数:
|
|
|
* {
|
|
|
* "startTime":"2023-10-19 00:00:00","endTime":"2023-10-19 00:00:00","patient":"915ceabb-5b1d-11e6-8344-fa163e8aee56",
|
|
|
* "status":2,"id":"","patientName":"王银汉","patientIdcard":"350211195808274534","patientAddr":"G.福建省厦门市海沧区海沧街道囷瑶村石岑社5组5号(高友网)",
|
|
|
* "patientPhone":"13950088528","applicationDescribe":"测试",
|
|
|
* "wlyyDoorServiceVoucherDos":[{"patientCode":"915ceabb-5b1d-11e6-8344-fa163e8aee56","type":"6","typeValue":"其他"}]
|
|
|
* }
|
|
|
*/
|
|
|
@RequestMapping(value = "create", method = RequestMethod.POST)
|
|
|
@ApiOperation(value = "医生为居民开通服务资格")
|
|
|
public Envelop create(
|