You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.3 KiB
Java
50 lines
1.3 KiB
Java
package com.supervision.manage.controller;
|
|
|
|
import com.supervision.manage.pojo.vo.ConfigTreatmentPlanWrapVo;
|
|
import com.supervision.model.ConfigTreatmentPlan;
|
|
import com.supervision.model.DiseaseTreatmentPlan;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import lombok.RequiredArgsConstructor;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
@Api(tags = "处置计划管理")
|
|
@RestController
|
|
@RequestMapping("treatmentPlan")
|
|
@RequiredArgsConstructor
|
|
public class TreatmentPlanController {
|
|
|
|
@ApiOperation("查询处置计划树")
|
|
@GetMapping("/queryTree")
|
|
public ConfigTreatmentPlanWrapVo queryTree(@RequestParam("处置方式") Integer disposalMethod) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
@ApiOperation("查询疾病处置计划列表")
|
|
@GetMapping("/queryList")
|
|
public List<ConfigTreatmentPlan> queryList(@RequestParam("处置方式") Integer disposalMethod) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
@ApiOperation("根据id查询处置计划详情")
|
|
@GetMapping("/findById")
|
|
public ConfigTreatmentPlanWrapVo findById(@RequestParam("处置方式") String id) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|