kaiyu
2021-03-10 5097d13418e9a0bf605f5272f1b9e60fc62c80cb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.moral.api.mapper;
 
import com.moral.api.entity.ManageRole;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * <p>
 * 后台角色表 Mapper 接口
 * </p>
 *
 * @author moral
 * @since 2021-03-09
 */
public interface ManageRoleMapper extends BaseMapper<ManageRole> {
    List<ManageRole> getManageRoleByAccountId(Integer accountId);
}