Browse Source

甲级一下病历统计接口添加注释

wangsy 3 years ago
parent
commit
5af0f50eff

+ 0 - 5
src/main/java/com/diagbot/vo/data/ABelowVO.java

@@ -11,11 +11,6 @@ public class ABelowVO {
      * 医院编码
      */
     private Long hospitalId;
-    /**
-     * 住院科室ID
-     */
-    @ApiModelProperty("住院科室ID")
-    private String behDeptId;
 
     /**
      * 住院科室名称

+ 6 - 1
src/main/java/com/diagbot/web/DataController.java

@@ -1,4 +1,5 @@
 package com.diagbot.web;
+
 import com.diagbot.annotation.SysLogger;
 import com.diagbot.dto.RespDTO;
 import com.diagbot.dto.data.*;
@@ -234,7 +235,11 @@ public class DataController {
         return RespDTO.onSuc(true);
     }*/
 
-    @ApiOperation(value = "甲级以下病历统计")
+    @ApiOperation(value = "甲级以下病历统计",
+            notes = "hospitalId:医院编码<br>" +
+                    "behDeptName:住院科室名称<br>" +
+                    "behospitalDate:入院时间<br>" +
+                    "leaveHospitalDate:出院时间<br>")
     @PostMapping("/belowHospitalList")
     @SysLogger("belowHospitalList")
     public RespDTO<List<ABelowDTO>> belowHospitalList(@RequestBody ABelowVO aBelowVO) {