xiaoyong931011
2023-08-08 2abf40714b49234e0111389f0651b5c5f7c22029
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);
}