|
@ -302,4 +302,15 @@ public class SpecialistController extends WeixinBaseController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/getPatientHealthLabel", method = RequestMethod.GET)
|
|
|
@ApiOperation(value = "获取居民专病服务信息")
|
|
|
public String getPatientHealthLabel(@ApiParam(name = "patient", value = "患者code") @RequestParam(required = true)String patient){
|
|
|
try {
|
|
|
return write(200, "获取成功", "data", specialistService.getPatientHealthLabel(patient));
|
|
|
} catch (Exception e) {
|
|
|
error(e);
|
|
|
return error(-1, "请求失败");
|
|
|
}
|
|
|
}
|
|
|
|
|
|
}
|