微生物模块

This commit is contained in:
tangw 2025-11-18 17:54:56 +08:00
parent 114018664b
commit 0ffa0b4152
2 changed files with 19 additions and 1 deletions

View File

@ -62,7 +62,7 @@ public class LisWorkController extends BaseController {
return new Result("0", "获取样本数据成功!", lisWorkService.getSampleList(jyrq, yq, days)); return new Result("0", "获取样本数据成功!", lisWorkService.getSampleList(jyrq, yq, days));
} }
@ApiOperation("获取样本列表") @ApiOperation("获取样本列表分页")
@GetMapping("/samplelistpage") @GetMapping("/samplelistpage")
public TableDataInfo samplelistpage(Date jyrq, String yq, Long days) { public TableDataInfo samplelistpage(Date jyrq, String yq, Long days) {
try { try {

View File

@ -71,5 +71,23 @@ public class LisWorkGermController extends BaseController {
public Result getmedgroup(String mbmc){ public Result getmedgroup(String mbmc){
return lisWorkGermService.getmedgroup(mbmc); return lisWorkGermService.getmedgroup(mbmc);
} }
@ApiOperation("获取微生物样本列表")
@GetMapping("/wswsamplelist")
public Result wswgetSampleList(Date jyrq, String yq, Integer days) {
return new Result("0", "获取样本数据成功!", lisWorkGermService.getSampleList(jyrq, yq, days));
}
@ApiOperation("获取微生物样本列表分页")
@GetMapping("/wswsamplelistpage")
public TableDataInfo wswsamplelistpage(Date jyrq, String yq, Integer days) {
try {
startPage();
startOrderBy();
List<LabPat> labPatList = lisWorkGermService.getSampleList(jyrq, yq, days);
return getDataTable(labPatList);
} finally {
clearPage();
}
}
} }