|
@ -407,7 +407,7 @@ public class MqSdkController extends EnvelopRestEndpoint {
|
|
|
|
|
|
@GetMapping(value = "/BS10144")
|
|
|
@ApiOperation(value = "核酸预约")
|
|
|
public ListEnvelop BS10144(@ApiParam(name = "deptCode", value = "科室code")
|
|
|
public Envelop BS10144(@ApiParam(name = "deptCode", value = "科室code")
|
|
|
@RequestParam(value = "deptCode", required = true) String deptCode,
|
|
|
@ApiParam(name = "docCode", value = "医生code")
|
|
|
@RequestParam(value = "docCode", required = true) String docCode,
|
|
@ -422,13 +422,13 @@ public class MqSdkController extends EnvelopRestEndpoint {
|
|
|
@ApiParam(name = "patientPhone", value = "患者手机号")
|
|
|
@RequestParam(value = "patientPhone", required = true) String patientPhone) throws Exception{
|
|
|
//String deptCode,String docCode,String startTime,String sSID,String patientName,String patientID,String patientPhone
|
|
|
JSONArray obj = entranceService.BS10144(deptCode,docCode,startTime,sSID,patientName,patientID,patientPhone,demoFlag);
|
|
|
String obj = entranceService.BS10144(deptCode,docCode,startTime,sSID,patientName,patientID,patientPhone,demoFlag);
|
|
|
return success(obj);
|
|
|
}
|
|
|
|
|
|
@GetMapping(value = "/BS10145")
|
|
|
@ApiOperation(value = "核酸预约")
|
|
|
public ListEnvelop BS10145(@ApiParam(name = "deptCode", value = "科室code")
|
|
|
public Envelop BS10145(@ApiParam(name = "deptCode", value = "科室code")
|
|
|
@RequestParam(value = "deptCode", required = true) String deptCode,
|
|
|
@ApiParam(name = "docCode", value = "医生code")
|
|
|
@RequestParam(value = "docCode", required = true) String docCode,
|
|
@ -443,7 +443,7 @@ public class MqSdkController extends EnvelopRestEndpoint {
|
|
|
@ApiParam(name = "patientPhone", value = "患者手机号")
|
|
|
@RequestParam(value = "patientPhone", required = true) String patientPhone) throws Exception{
|
|
|
//String deptCode,String docCode,String startTime,String sSID,String patientName,String patientID,String patientPhone
|
|
|
JSONArray obj = entranceService.BS10145(deptCode,docCode,startTime,sSID,patientName,patientID,patientPhone,demoFlag);
|
|
|
String obj = entranceService.BS10145(deptCode,docCode,startTime,sSID,patientName,patientID,patientPhone,demoFlag);
|
|
|
return success(obj);
|
|
|
}
|
|
|
|