xiaoyong931011
2023-08-17 e203174b7798c223e2a568ff9493b492cdc4b413
1
2
3
4
5
6
7
8
9
10
package cc.mrbird.febs.dapp.service;
 
import cc.mrbird.febs.common.tree.MemberNode;
import cc.mrbird.febs.dapp.entity.MatrixTreeNode;
import com.baomidou.mybatisplus.extension.service.IService;
 
public interface IMatrixTreeNodeService extends IService<MatrixTreeNode> {
 
    public MemberNode addTreeNode(Long memberId);
}