新版仿ok交易所-后端
zj
2025-01-06 6e21cf6973aa1898259ddceda665f0f1b06272ab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * Copyright (c) 2018-2999 广州市蓝海创新科技有限公司 All rights reserved.
 *
 * https://www.mall4j.com/
 *
 * 未经允许,不可做商业用途!
 *
 * 版权所有,侵权必究!
 */
 
package com.yami.trading.sys.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yami.trading.sys.model.SysRole;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * 角色管理
 */
public interface SysRoleMapper extends BaseMapper<SysRole>{
 
    void deleteBatch(@Param("roleIds") Long[] roleIds);
 
    List<Long> listRoleIdByUserId(Long userId);
 
}