|
@ -181,7 +181,7 @@ public class DoctorConsultEndpoint extends EnvelopRestEndpoint {
|
|
|
@ApiOperation(value = "获取正在进行中的视频复诊/协同门诊", notes = "获取正在进行中的视频复诊/协同门诊")
|
|
|
public ListEnvelop getVideoPrescriptionByDoctor(
|
|
|
@ApiParam(name = "doctor", value = "医生CODE")
|
|
|
@RequestParam(value = "doctor",required = true) String doctor){
|
|
|
@RequestParam(value = "doctor",required = true) String doctor)throws Exception{
|
|
|
return success("请求成功",prescriptionService.getVideoPrescriptionByDoctor(doctor));
|
|
|
}
|
|
|
|
|
@ -189,7 +189,18 @@ public class DoctorConsultEndpoint extends EnvelopRestEndpoint {
|
|
|
@ApiOperation(value = "获取等待就诊的视频复诊/协同门诊", notes = "获取等待就诊的视频复诊/协同门诊")
|
|
|
public ListEnvelop getWaitingForVisitVideoPrescriptionByDoctor(
|
|
|
@ApiParam(name = "doctor", value = "医生CODE")
|
|
|
@RequestParam(value = "doctor",required = true) String doctor){
|
|
|
@RequestParam(value = "doctor",required = true) String doctor)throws Exception{
|
|
|
return success("请求成功",prescriptionService.getWaitingForVisitVideoPrescriptionByDoctor(doctor));
|
|
|
}
|
|
|
|
|
|
@PostMapping(value = BaseHospitalRequestMapping.DodtorIM.pickVideoPrescripitonWaitingPeople)
|
|
|
@ApiOperation(value = "医生抢单(视频)", notes = "医生抢单(视频)")
|
|
|
public Envelop pickVideoPrescripitonWaitingPeople(
|
|
|
@ApiParam(name = "outpatientCode", value = "HIS就诊记录CODE", defaultValue = "1")
|
|
|
@RequestParam(value = "outpatientCode", required = true) String outpatientCode,
|
|
|
@ApiParam(name = "doctor", value = "医生CODE")
|
|
|
@RequestParam(value = "doctor",required = true) String doctor)throws Exception{
|
|
|
prescriptionService.pickVideoPrescripitonWaitingPeople(outpatientCode,doctor);
|
|
|
return success("请求成功");
|
|
|
}
|
|
|
}
|