ProfileEventEndPoint.java 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package com.yihu.ehr.profile.controller.profile;
  2. import com.yihu.ehr.constants.ApiVersion;
  3. import com.yihu.ehr.constants.ServiceApi;
  4. import com.yihu.ehr.controller.EnvelopRestEndPoint;
  5. import com.yihu.ehr.profile.service.*;
  6. import io.swagger.annotations.Api;
  7. import io.swagger.annotations.ApiOperation;
  8. import io.swagger.annotations.ApiParam;
  9. import org.springframework.beans.factory.annotation.Autowired;
  10. import org.springframework.http.MediaType;
  11. import org.springframework.web.bind.annotation.RequestMapping;
  12. import org.springframework.web.bind.annotation.RequestMethod;
  13. import org.springframework.web.bind.annotation.RequestParam;
  14. import org.springframework.web.bind.annotation.RestController;
  15. import java.util.List;
  16. import java.util.Map;
  17. /**
  18. * EndPoint - 档案事件接口(兼容 pc & mobile)
  19. * 档案事件接口
  20. * @author hzp
  21. * @version 1.0
  22. * @created 2017.06.22
  23. * @modifier progr1mmer
  24. */
  25. @RestController
  26. @RequestMapping(value = ApiVersion.Version1_0, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
  27. @Api(value = "ProfileEventEndPoint", description = "档案事件接口", tags = {"档案影像服务 - 档案事件接口"})
  28. public class ProfileEventEndPoint extends EnvelopRestEndPoint {
  29. @Autowired
  30. private ProfileEventService patientEvent;
  31. @ApiOperation("门诊/住院事件(时间轴)")
  32. @RequestMapping(value = ServiceApi.Profiles.MedicalEvents, method = RequestMethod.GET)
  33. public List<Map<String, Object>> visits (
  34. @ApiParam(name = "demographic_id", value = "身份证号", required = true, defaultValue = "362301195002141528")
  35. @RequestParam(value = "demographic_id") String demographic_id,
  36. @ApiParam(name = "filter", value = "过滤条件(key1=val1;key2=val2)")
  37. @RequestParam(value = "filter", required = false) String filter,
  38. @ApiParam(name = "blurry_type", value = "针对需要对特殊档案类型进行查询的参数" +
  39. "(0-门诊 1-住院 2-体检 3-影像 4-检查 5-检验 6-妇幼 7-免疫);" +
  40. "此处有值的话filter参数中不能再包含event_type")
  41. @RequestParam(value = "blurry_type", required = false) String blurry_type,
  42. @ApiParam(name = "date", value = "时间,格式如:{\"start\":\"2018-01-01T00:00:00Z\",\"end\":\"2018-02-01T00:00:00Z\",\"month\":\"2018-03\"}")
  43. @RequestParam(value = "date", required = false) String date,
  44. @ApiParam(name = "searchParam", value = "搜索条件(此参数只针对机构和诊断)")
  45. @RequestParam(value = "searchParam", required = false) String searchParam) throws Exception {
  46. return patientEvent.visits(demographic_id, filter, blurry_type, date, searchParam);
  47. }
  48. @ApiOperation("最近的一条就诊记录 - 上饶APP")
  49. @RequestMapping(value = ServiceApi.Profiles.RecentMedicalEvents, method = RequestMethod.GET)
  50. public Map<String, Object> recentVisit (
  51. @ApiParam(name = "demographic_id", value = "身份证号", required = true, defaultValue = "362301195002141528")
  52. @RequestParam(value = "demographic_id") String demographic_id) throws Exception {
  53. return patientEvent.recentVisit(demographic_id, -30);
  54. }
  55. @ApiOperation("近期就诊列表 - 档案浏览器")
  56. @RequestMapping(value = ServiceApi.Profiles.RecentVisits, method = RequestMethod.GET)
  57. public List<Map<String, Object>> recentVisits (
  58. @ApiParam(name = "demographic_id", value = "身份证号", required = true, defaultValue = "362301195002141528")
  59. @RequestParam(value = "demographic_id") String demographic_id) throws Exception {
  60. return patientEvent.recentVisits(demographic_id, -180);
  61. }
  62. @ApiOperation("近期就诊详情 - 档案浏览器")
  63. @RequestMapping(value = ServiceApi.Profiles.RecentVisitsSub, method = RequestMethod.GET)
  64. public Map<String, Object> recentVisitsSub (
  65. @ApiParam(name = "profile_id", value = "档案ID", required = true, defaultValue = "49229004X_000000481520_1513758586000")
  66. @RequestParam(value = "profile_id") String profile_id) throws Exception {
  67. return patientEvent.recentVisitsSub(profile_id);
  68. }
  69. }