xiaoyong931011
2023-08-18 544c84ec7e9e285015cd79d48e6e4c7dcf6e6f7b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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<MatrixTreeNode> {
 
    List<MatrixTreeNode> selectAllMatrixTreeNode();
 
    MatrixTreeNode selectByTreeNode(@Param("treeNode") Long treeNode);
 
    MatrixTreeNode selectByParentNodeAndType(@Param("parentNodeMemberId")Long parentNodeMemberId, @Param("nodeType")Integer nodeType);
}