| | |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.common.node.TreeIntegerNode; |
| | | import org.springblade.modules.category.dto.CategoryDTO; |
| | | import org.springblade.modules.category.entity.CategoryEntity; |
| | | import org.springblade.modules.category.excel.CategoryExcel; |
| | | import org.springblade.modules.category.vo.CategoryVO; |
| | | |
| | | import java.util.List; |
| | |
| | | * @return |
| | | */ |
| | | List<CategoryDTO> selectCategoryLabelList(CategoryDTO categoryDTO); |
| | | |
| | | List<TreeIntegerNode> tree(CategoryVO category); |
| | | |
| | | /** |
| | | * 标签导入 |
| | | * @param data |
| | | * @param isCovered |
| | | */ |
| | | void importCategory(List<CategoryExcel> data, Boolean isCovered); |
| | | } |