Browse Source

添加疾病管理查询全部

523096025 4 years ago
parent
commit
e430ceebb2

+ 2 - 0
huimv-smart-management/src/main/java/com/huimv/management/controller/HealthDiseaseCauseController.java

@@ -4,6 +4,7 @@ import java.util.Arrays;
 import java.util.List;
 import java.util.Map;
 
+import io.swagger.annotations.Api;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.PathVariable;
 import org.springframework.web.bind.annotation.RequestBody;
@@ -25,6 +26,7 @@ import com.huimv.common.utils.R;
  * @email yinhao@163.com
  * @date 2021-06-10 09:44:06
  */
+@Api(tags = "病因库表")
 @RestController
 @RequestMapping("management/healthdiseasecause")
 public class HealthDiseaseCauseController {

+ 2 - 0
huimv-smart-management/src/main/java/com/huimv/management/controller/HealthDiseaseController.java

@@ -4,6 +4,7 @@ import java.util.Arrays;
 import java.util.List;
 import java.util.Map;
 
+import io.swagger.annotations.Api;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.PathVariable;
 import org.springframework.web.bind.annotation.RequestBody;
@@ -25,6 +26,7 @@ import com.huimv.common.utils.R;
  * @email yinhao@163.com
  * @date 2021-06-10 09:44:06
  */
+@Api(tags = "疾病表")
 @RestController
 @RequestMapping("management/healthdisease")
 public class HealthDiseaseController {

+ 2 - 0
huimv-smart-management/src/main/java/com/huimv/management/controller/HealthImmuneRecordController.java

@@ -5,6 +5,7 @@ import java.util.List;
 import java.util.Map;
 
 import com.alibaba.fastjson.JSON;
+import io.swagger.annotations.Api;
 import io.swagger.models.auth.In;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.PathVariable;
@@ -27,6 +28,7 @@ import com.huimv.common.utils.R;
  * @email yinhao@163.com
  * @date 2021-06-10 09:44:06
  */
+@Api(tags = "免疫记录表")
 @RestController
 @RequestMapping("management/healthimmunerecord")
 public class HealthImmuneRecordController {

+ 2 - 0
huimv-smart-management/src/main/java/com/huimv/management/controller/HealthIsolationRecordController.java

@@ -4,6 +4,7 @@ import java.util.Arrays;
 import java.util.List;
 import java.util.Map;
 
+import io.swagger.annotations.Api;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.PathVariable;
 import org.springframework.web.bind.annotation.RequestBody;
@@ -25,6 +26,7 @@ import com.huimv.common.utils.R;
  * @email yinhao@163.com
  * @date 2021-06-10 09:44:06
  */
+@Api(tags = "隔离记录表")
 @RestController
 @RequestMapping("management/healthisolationrecord")
 public class HealthIsolationRecordController {

+ 2 - 0
huimv-smart-management/src/main/java/com/huimv/management/controller/HealthMedicalRecordController.java

@@ -4,6 +4,7 @@ import java.util.Arrays;
 import java.util.List;
 import java.util.Map;
 
+import io.swagger.annotations.Api;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.PathVariable;
 import org.springframework.web.bind.annotation.RequestBody;
@@ -25,6 +26,7 @@ import com.huimv.common.utils.R;
  * @email yinhao@163.com
  * @date 2021-06-10 09:44:06
  */
+@Api(tags = "病历档案表")
 @RestController
 @RequestMapping("management/healthmedicalrecord")
 public class HealthMedicalRecordController {

+ 2 - 0
huimv-smart-management/src/main/java/com/huimv/management/controller/HealthSymptomController.java

@@ -4,6 +4,7 @@ import java.util.Arrays;
 import java.util.List;
 import java.util.Map;
 
+import io.swagger.annotations.Api;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.PathVariable;
 import org.springframework.web.bind.annotation.RequestBody;
@@ -25,6 +26,7 @@ import com.huimv.common.utils.R;
  * @email yinhao@163.com
  * @date 2021-06-10 10:07:03
  */
+@Api(tags = "症状库表")
 @RestController
 @RequestMapping("management/healthsymptom")
 public class HealthSymptomController {

+ 2 - 0
huimv-smart-management/src/main/java/com/huimv/management/controller/HealthTreatmentPlanController.java

@@ -4,6 +4,7 @@ import java.util.Arrays;
 import java.util.List;
 import java.util.Map;
 
+import io.swagger.annotations.Api;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.PathVariable;
 import org.springframework.web.bind.annotation.RequestBody;
@@ -25,6 +26,7 @@ import com.huimv.common.utils.R;
  * @email yinhao@163.com
  * @date 2021-06-10 09:44:06
  */
+@Api(tags = "治疗方案库表")
 @RestController
 @RequestMapping("management/healthtreatmentplan")
 public class HealthTreatmentPlanController {