package cc.mrbird.febs.dapp.mapper; import cc.mrbird.febs.dapp.entity.MatrixTreeNode; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; import java.util.List; public interface MatrixTreeNodeMapper extends BaseMapper { List selectAllMatrixTreeNode(); MatrixTreeNode selectByTreeNode(@Param("treeNode") Long treeNode); MatrixTreeNode selectByParentNodeAndType(@Param("parentNodeMemberId")Long parentNodeMemberId, @Param("nodeType")Integer nodeType); }