From cd763b4567d6d87d678fc8942dc54ec8e13bb8df Mon Sep 17 00:00:00 2001 From: gaowdong Date: Tue, 4 Mar 2025 17:26:02 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8C=BA=E5=9F=9F/=E6=A1=A3=E5=8F=A3=E7=AE=A1?= =?UTF-8?q?=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../core/allocation/canteen/mapper/AllocAreaMapper.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/allocation/canteen/mapper/AllocAreaMapper.java b/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/allocation/canteen/mapper/AllocAreaMapper.java index f6e69b4c..d286b96d 100644 --- a/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/allocation/canteen/mapper/AllocAreaMapper.java +++ b/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/allocation/canteen/mapper/AllocAreaMapper.java @@ -1,14 +1,15 @@ package com.bonus.canteen.core.allocation.canteen.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.bonus.canteen.core.allocation.canteen.model.AllocArea; +import com.bonus.canteen.core.allocation.canteen.param.AllocAreaParam; import com.bonus.canteen.core.allocation.canteen.vo.AllocAreaTreeVO; import com.bonus.canteen.core.autth.config.LeNiuDataPermission; import com.bonus.canteen.core.autth.enums.DataPermissionTypeEnum; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; -import org.apache.ibatis.annotations.Select; import java.util.List;