manage:代码结构调整
parent
6e802fffcf
commit
8c70cdba9b
@ -0,0 +1,57 @@
|
||||
package com.supervision.manage.controller;
|
||||
|
||||
import com.supervision.model.DiseaseAncillary;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Api(tags = "疾病辅助检查管理")
|
||||
@RestController
|
||||
@RequestMapping("diseaseAncillary")
|
||||
@RequiredArgsConstructor
|
||||
public class DiseaseAncillaryController {
|
||||
|
||||
|
||||
@ApiOperation("新增辅助检查信息")
|
||||
@GetMapping("/save")
|
||||
public String saveAncillary(DiseaseAncillary diseaseAncillary) {
|
||||
|
||||
return null;
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ApiOperation("删除疾病")
|
||||
@DeleteMapping("/delete")
|
||||
public String deleteDiseaseAncillary(@RequestParam String id) {
|
||||
|
||||
|
||||
return "id";
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ApiOperation("修改辅助检查信息")
|
||||
@PutMapping("/update")
|
||||
public String updateAncillary(DiseaseAncillary diseaseAncillary) {
|
||||
|
||||
return null;
|
||||
|
||||
}
|
||||
|
||||
@ApiOperation("分页查询疾病辅助检查列表信息")
|
||||
@GetMapping("/queryPageList")
|
||||
public List<DiseaseAncillary> queryPageAncillaryList(@RequestParam(defaultValue = "1") Integer pageNum,
|
||||
@RequestParam(defaultValue = "1") Integer pageSize,
|
||||
@RequestParam DiseaseAncillary diseaseAncillary) {
|
||||
|
||||
return null;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,56 @@
|
||||
package com.supervision.manage.controller;
|
||||
|
||||
|
||||
import com.supervision.manage.pojo.vo.DiseaseVo;
|
||||
import com.supervision.model.DiseasePhysical;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Api(tags = "疾病体格检查管理")
|
||||
@RestController
|
||||
@RequestMapping("diseasePhysical")
|
||||
@RequiredArgsConstructor
|
||||
public class DiseasePhysicalController {
|
||||
|
||||
|
||||
|
||||
@ApiOperation("保存体格检查信息")
|
||||
@PostMapping("/save")
|
||||
public String savePhysical(DiseasePhysical diseasePhysical) {
|
||||
|
||||
return null;
|
||||
|
||||
}
|
||||
|
||||
@ApiOperation("删除体格检查")
|
||||
@DeleteMapping("/delete")
|
||||
public String deletePhysical(@RequestParam String id) {
|
||||
|
||||
|
||||
return "id";
|
||||
|
||||
}
|
||||
|
||||
@ApiOperation("修改辅助检查信息")
|
||||
@PutMapping("/update")
|
||||
public String updatePhysical(DiseasePhysical diseasePhysical) {
|
||||
|
||||
return null;
|
||||
|
||||
}
|
||||
|
||||
@ApiOperation("分页查询疾病体格检查列表信息")
|
||||
@GetMapping("/queryPageList")
|
||||
public List<DiseaseVo> queryPagePhysicalList(@RequestParam(defaultValue = "1")Integer pageNum,
|
||||
@RequestParam(defaultValue = "1")Integer pageSize,
|
||||
@RequestParam DiseasePhysical diseasePhysical) {
|
||||
|
||||
return null;
|
||||
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,50 @@
|
||||
package com.supervision.manage.controller;
|
||||
|
||||
import com.supervision.model.DiseaseQuestionRelation;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Api(tags = "疾病问题管理")
|
||||
@RestController
|
||||
@RequestMapping("diseaseQuestion")
|
||||
@RequiredArgsConstructor
|
||||
public class DiseaseQuestionController {
|
||||
|
||||
|
||||
|
||||
@ApiOperation("保存问题库信息")
|
||||
@GetMapping("/save")
|
||||
public String saveQuestionList(@RequestParam DiseaseQuestionRelation diseaseQuestionRelation) {
|
||||
|
||||
return null;
|
||||
|
||||
}
|
||||
|
||||
@ApiOperation("删除疾病")
|
||||
@DeleteMapping("/delete")
|
||||
public String deleteDiseaseQuestion(@RequestParam String id) {
|
||||
|
||||
|
||||
return "id";
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ApiOperation("分页查询疾病问题库信息")
|
||||
@GetMapping("/queryPageList")
|
||||
public List<DiseaseQuestionRelation> queryPageQuestionList(@RequestParam(defaultValue = "1") Integer pageNum,
|
||||
@RequestParam(defaultValue = "1") Integer pageSize,
|
||||
@RequestParam DiseaseQuestionRelation diseaseQuestionRelation) {
|
||||
|
||||
return null;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,39 @@
|
||||
package com.supervision.manage.controller;
|
||||
|
||||
|
||||
import com.supervision.model.DiseaseTreatmentPlan;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Api(tags = "疾病处置计划管理")
|
||||
@RestController
|
||||
@RequestMapping("diseaseTreatmentPlan")
|
||||
@RequiredArgsConstructor
|
||||
public class DiseaseTreatmentPlanController {
|
||||
|
||||
|
||||
@ApiOperation("保存处置信息")
|
||||
@PostMapping("/save")
|
||||
public String saveTreatmentPlan(DiseaseTreatmentPlan diseaseTreatmentPlan) {
|
||||
|
||||
return null;
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ApiOperation("分页查询疾病处置信息")
|
||||
@GetMapping("/queryPageList")
|
||||
public List<DiseaseTreatmentPlan> queryPageTreatmentPlanList(@RequestParam(defaultValue = "1") Integer pageNum,
|
||||
@RequestParam(defaultValue = "1") Integer pageSize,
|
||||
@RequestParam DiseaseTreatmentPlan diseaseTreatmentPlan) {
|
||||
|
||||
return null;
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue