whyclxw
2025-06-14 eb9df0f9e9b91757f82a6211a74b996629860f53
1
2
3
4
5
6
7
8
9
10
11
12
package com.whyc.mapper;
 
import com.whyc.pojo.Group;
 
import java.util.List;
 
public interface GroupMapper extends CustomMapper<Group>{
    //查询所有的权限组
    List getAllGroup();
    //查询最大的权限组id
    int selectGroupIdMax();
}