xiaoyong931011
2023-03-01 c3f2f93821ac8d351fe7c9d1f0f28c39b36cfef1
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);
}