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
| package com.dsh.upms.service;
|
|
| import cn.mb.cloud.common.data.base.BaseService;
| import com.dsh.upms.entity.SysUserRole;
|
| /**
| * <p>
| * 用户角色表 服务类
| * </p>
| *
| * @author null123
| * @since 2022-05-16
| */
| public interface ISysUserRoleService extends BaseService<SysUserRole> {
|
|
| /**
| * 根据用户ID删除绑定的角色
| *
| * @param doctorId
| */
| void deleteByUserId(Long doctorId);
|
|
| }
|
|