From 4f3a98f19143865cdc1de4791e8a95d96bd40c65 Mon Sep 17 00:00:00 2001 From: maven <2163098428@qq.com> Date: 星期五, 01 八月 2025 13:27:59 +0800 Subject: [PATCH] yys 密码已重置 --- cnas-require/src/main/java/com/ruoyi/require/mapper/InternalWastesMapper.java | 31 +++++++++++++++++++++++++++++++ 1 files changed, 31 insertions(+), 0 deletions(-) diff --git a/cnas-require/src/main/java/com/ruoyi/require/mapper/InternalWastesMapper.java b/cnas-require/src/main/java/com/ruoyi/require/mapper/InternalWastesMapper.java new file mode 100644 index 0000000..1d91e2b --- /dev/null +++ b/cnas-require/src/main/java/com/ruoyi/require/mapper/InternalWastesMapper.java @@ -0,0 +1,31 @@ +package com.ruoyi.require.mapper; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.ruoyi.require.dto.InternalWastesDto; +import com.ruoyi.require.pojo.InternalWastes; +import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; + +/** + * <p> + * 瀹夊叏鍐呭姟涓夊簾鐧昏 Mapper 鎺ュ彛 + * </p> + * + * @author + * @since 2024-11-19 06:39:27 + */ +@Mapper +public interface InternalWastesMapper extends BaseMapper<InternalWastes> { + + + /** + * 瀹夊叏鍐呭姟涓夊簾鐧昏鍒嗛〉鏌ヨ + * @param page + * @param ew + * @return + */ + IPage<InternalWastesDto> pageInternalWastes(Page page, @Param("ew") QueryWrapper<InternalWastes> ew); +} -- Gitblit v1.9.3