Commit 8a4b0a106576e2c8b2dfc02bc5474d5052d45605

Authored by yangfei
1 parent e3d84f7bc1

产检医生统计

Showing 2 changed files with 56 additions and 3 deletions

platform-biz-service/src/main/java/com/lyms/platform/permission/model/BabyPatientExtendEarFollowUp.java View file @ 8a4b0a1
... ... @@ -55,7 +55,21 @@
55 55 * 人工耳蜗(0-左耳,2-右耳,3-全部)
56 56 */
57 57 private Integer artifiCochlea;
  58 +
58 59 /**
  60 + * 是否选择助听器
  61 + */
  62 + private Integer isAudiphone;
  63 + /**
  64 + * 是否选择手术(0-未选择,1-选择)
  65 + */
  66 + private Integer isOperation;
  67 + /**
  68 + * 是否选择人工耳蜗(0-左耳,2-右耳,3-全部)
  69 + */
  70 + private Integer isArtifiCochlea;
  71 +
  72 + /**
59 73 * 指导意见
60 74 */
61 75 private String guideOpinion;
... ... @@ -115,6 +129,30 @@
115 129 * 状态
116 130 */
117 131 private Integer enalble;
  132 +
  133 + public Integer getIsAudiphone() {
  134 + return isAudiphone;
  135 + }
  136 +
  137 + public void setIsAudiphone(Integer isAudiphone) {
  138 + this.isAudiphone = isAudiphone;
  139 + }
  140 +
  141 + public Integer getIsOperation() {
  142 + return isOperation;
  143 + }
  144 +
  145 + public void setIsOperation(Integer isOperation) {
  146 + this.isOperation = isOperation;
  147 + }
  148 +
  149 + public Integer getIsArtifiCochlea() {
  150 + return isArtifiCochlea;
  151 + }
  152 +
  153 + public void setIsArtifiCochlea(Integer isArtifiCochlea) {
  154 + this.isArtifiCochlea = isArtifiCochlea;
  155 + }
118 156  
119 157 public String getMarkTimeStr() {
120 158 return markTimeStr;
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/EarController.java View file @ 8a4b0a1
... ... @@ -58,15 +58,15 @@
58 58 private AutoMatchFacade autoMatchFacade;
59 59  
60 60 /**
61   - * 进入新增随访记录页面前,验证及初始化数据
  61 + * 检测儿童是否能够随访
62 62 *
63 63 * @param babyId 儿童档案id
64 64 * @return
65 65 */
66   - @RequestMapping(method = RequestMethod.GET, value = "/initFollowUp")
  66 + @RequestMapping(method = RequestMethod.GET, value = "/checkBabyFollowUp")
67 67 @ResponseBody
68 68 @TokenRequired
69   - public BaseResponse initFollowUp(String babyId) {
  69 + public BaseResponse checkBabyFollowUp(String babyId) {
70 70 if (StringUtils.isNotEmpty(babyId)) {//传入儿童档案id
71 71 return new BaseResponse().setErrorcode(ErrorCodeConstants.PARAMETER_ERROR).setErrormsg("请传入儿童档案id");
72 72 }
... ... @@ -111,6 +111,21 @@
111 111 return new BaseResponse().setErrorcode(ErrorCodeConstants.NO_POWER).setErrormsg("当前儿童听诊记录还未有确诊记录不能进行随访");
112 112 }
113 113  
  114 + //根据条件查询基础配置信息表
  115 + InitFollowUp initHearingDiagnose = new InitFollowUp();
  116 + initHearingDiagnose.setConfirmResult(EnumUtil.toJson(ConfirmedEnums.class));
  117 + return initHearingDiagnose.setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("查询成功");
  118 + }
  119 +
  120 + /**
  121 + * 进入新增随访记录页面前,验证及初始化数据
  122 + *
  123 + * @return
  124 + */
  125 + @RequestMapping(method = RequestMethod.GET, value = "/initFollowUp")
  126 + @ResponseBody
  127 + @TokenRequired
  128 + public BaseResponse initFollowUp() {
114 129 //根据条件查询基础配置信息表
115 130 InitFollowUp initHearingDiagnose = new InitFollowUp();
116 131 initHearingDiagnose.setConfirmResult(EnumUtil.toJson(ConfirmedEnums.class));