|
@ -241,7 +241,7 @@ public class SpecialistController extends BaseController {
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/findPatientTeamList", method = RequestMethod.GET)
|
|
|
@ApiOperation(value = "获取居民所有专科医生签约信息")
|
|
|
@ApiOperation(value = "获取居民所有专科医生团队签约信息")
|
|
|
public String findPatientTeamList(@ApiParam(name = "patient", value = "居民code") @RequestParam(required = true) String patient) {
|
|
|
try {
|
|
|
return write(200, "获取成功", "data", specialistService.findPatientTeamList(patient));
|
|
@ -251,4 +251,15 @@ public class SpecialistController extends BaseController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
}
|
|
|
@RequestMapping(value = "/findPatientSignSpecialist", method = RequestMethod.GET)
|
|
|
@ApiOperation(value = "获取居民所有专科医生签约信息")
|
|
|
public String findPatientSignSpecialist(@ApiParam(name = "patient", value = "居民code") @RequestParam(required = true)String patient) throws Exception {
|
|
|
try {
|
|
|
return write(200, "获取成功", "data", specialistService.findPatientSignSpecialist(patient));
|
|
|
} catch (Exception e) {
|
|
|
error(e);
|
|
|
return error(-1, "请求失败");
|
|
|
}
|
|
|
}
|
|
|
|
|
|
}
|