xuhy
2025-03-12 da6c062284cbabd038668591758eba10094cc72b
ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TFoundationPersonController.java
@@ -91,7 +91,7 @@
    @GetMapping(value = "/getDetailById")
    public AjaxResult<List<TFoundationPersonVO>> getDetailByMealType(@RequestParam("mealType") Integer mealType) {
        // 查询基础设置
        List<TFoundationPersonVO> foundationPersonVOS = foundationPersonService.getSetList();
        List<TFoundationPersonVO> foundationPersonVOS = foundationPersonService.getPersonList();
        List<TFoundationPersonVO> collect = foundationPersonVOS.stream().filter(e -> Objects.equals(e.getMealType(), mealType)).collect(Collectors.toList());
        for (TFoundationPersonVO foundationPersonVO : collect) {
            List<TFoundationConfig> list = foundationConfigService.list(Wrappers.lambdaQuery(TFoundationConfig.class)