Administrator
2025-04-30 bdcd332feebe13ea46186ed093ca55eb2f3b3fdf
src/main/java/cc/mrbird/febs/mall/mapper/MallGoodsCategoryMapper.java
@@ -1,6 +1,10 @@
package cc.mrbird.febs.mall.mapper;
import cc.mrbird.febs.mall.entity.MallGoodsCategory;
import cc.mrbird.febs.mall.entity.MallStore;
import cc.mrbird.febs.mall.entity.MallStoreItem;
import cc.mrbird.febs.mall.vo.AdminMallGoodsCategoryTreeVo;
import cc.mrbird.febs.mall.vo.AdminMallGoodsCategoryVo;
import cc.mrbird.febs.mall.vo.MallGoodsCategoryVo;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
@@ -11,7 +15,7 @@
public interface MallGoodsCategoryMapper extends BaseMapper<MallGoodsCategory> {
    IPage<MallGoodsCategory> selectCategoryList(Page<MallGoodsCategory> page, @Param("record")MallGoodsCategory mallGoodsCategory);
    IPage<MallGoodsCategory> selectCategoryListInPage(Page<MallGoodsCategory> page, @Param("record")MallGoodsCategory mallGoodsCategory);
    List<MallGoodsCategory> selectCategoryByName(@Param("name")String name);
@@ -22,4 +26,18 @@
    List<MallGoodsCategory> selectCategoryListByParentId(@Param("id") Long id);
    List<MallGoodsCategory> selectRecommendCategoryList();
    AdminMallGoodsCategoryVo getMallGoodsCategoryInfoById(@Param("id")long id);
    List<AdminMallGoodsCategoryTreeVo> getParentCategorys();
    List<MallGoodsCategory> selectChildCategaryById(@Param("id")Long id);
    List<AdminMallGoodsCategoryTreeVo> getAllCategorys();
    IPage<MallStore> selectStoreListInPage(Page<MallStore> page, @Param("record")MallStore mallStore);
    IPage<MallStoreItem> selectStoreItemListInPage(Page<MallStoreItem> page, @Param("record")MallStoreItem mallStoreItem);
    List<MallStore> getStore();
}