From a7c6abad7c9e59285542156c40081fa54e2df2de Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Tue, 20 Dec 2022 17:20:23 +0800 Subject: [PATCH] 20221220 1、每天两点会员星级保证金返还任务 2、每天两点半会员星级更新任务 --- src/main/java/cc/mrbird/febs/mall/mapper/MallNewsCategoryMapper.java | 12 +++++++++++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/mall/mapper/MallNewsCategoryMapper.java b/src/main/java/cc/mrbird/febs/mall/mapper/MallNewsCategoryMapper.java index c70ceb9..e953e09 100644 --- a/src/main/java/cc/mrbird/febs/mall/mapper/MallNewsCategoryMapper.java +++ b/src/main/java/cc/mrbird/febs/mall/mapper/MallNewsCategoryMapper.java @@ -1,2 +1,12 @@ -package cc.mrbird.febs.mall.mapper;public interface MallNewsCategoryMapper { +package cc.mrbird.febs.mall.mapper; + +import cc.mrbird.febs.mall.entity.MallNewsCategory; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import org.apache.ibatis.annotations.Param; + +public interface MallNewsCategoryMapper extends BaseMapper<MallNewsCategory> { + + IPage<MallNewsCategory> selectInPage(@Param("record") MallNewsCategory mallNewsCategory, Page<MallNewsCategory> page); } -- Gitblit v1.9.1