xiaoyong931011
2022-09-23 7df8d05903fb7fdfc04d5a71dc6e3ce4c9d22c50
1
2
3
4
5
6
7
8
9
10
11
12
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);
}