新增接口 分类列表(包括子分类)

This commit is contained in:
2024-06-20 11:57:02 +08:00
parent 08625bd03e
commit 762a902950
5 changed files with 58 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
package com.chaozhanggui.system.cashierservice.dao;
import com.chaozhanggui.system.cashierservice.entity.TbShopCategory;
import com.chaozhanggui.system.cashierservice.entity.vo.ShopCategoryVo;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Component;
@@ -22,4 +23,5 @@ public interface TbShopCategoryMapper {
int updateByPrimaryKey(TbShopCategory record);
List<TbShopCategory> selectByAll(String shopId);
List<ShopCategoryVo> queryAllCategory(String shopId);
}