package com.mzl.flower.mapper.film; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.mzl.flower.dto.request.film.FilmCategoryQueryDTO; import com.mzl.flower.dto.response.film.FilmCategoryTreeDTO; import com.mzl.flower.entity.film.FilmCategory; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface FilmCategoryMapper extends BaseMapper { /** * 查询分类列表 */ List selectCategoryList(FilmCategoryQueryDTO dto); /** * 查询分类树列表 */ List selectTreeList(FilmCategoryQueryDTO dto); }