|
@ -1001,5 +1001,16 @@ public class PatientController extends WeixinBaseController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
@RequestMapping(value = "getArchiveComboList", method = RequestMethod.POST)
|
|
|
@ResponseBody
|
|
|
@ApiOperation("获取居民建档详细信息下拉列表集合")
|
|
|
public String getArchiveComboList(){
|
|
|
try {
|
|
|
// 获取医生下的患者
|
|
|
return write(200, "请求成功", "data",patientInfoService.getArchiveComboList());
|
|
|
} catch (Exception e) {
|
|
|
error(e);
|
|
|
return error( -1, "查询失败!");
|
|
|
}
|
|
|
}
|
|
|
}
|