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.
28 lines
828 B
Java
28 lines
828 B
Java
1 year ago
|
package com.supervision.manage.controller;
|
||
|
|
||
|
import com.supervision.manage.pojo.vo.ConfigTreatmentPlanWrapVo;
|
||
|
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;
|
||
|
|
||
|
|
||
|
@Api(tags = "处置计划管理")
|
||
|
@RestController
|
||
|
@RequestMapping("treatmentPlan")
|
||
|
@RequiredArgsConstructor
|
||
|
public class TreatmentPlanController {
|
||
|
|
||
|
@ApiOperation("查询疾病列表")
|
||
|
@GetMapping("/queryList")
|
||
|
public ConfigTreatmentPlanWrapVo queryList(@RequestParam("处置方式") Integer disposalMethod) {
|
||
|
|
||
|
return null;
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|