jhprjv2/ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysRoleDeptMapper.java

45 lines
920 B
Java
Raw Normal View History

2023-08-10 21:09:49 +08:00
package com.ruoyi.system.mapper;
import java.util.List;
import com.ruoyi.system.domain.SysRoleDept;
/**
*
*
* @author ruoyi
*/
public interface SysRoleDeptMapper
{
/**
* ID
*
* @param roleId ID
* @return
*/
public int deleteRoleDeptByRoleId(Long roleId);
/**
*
*
* @param ids ID
* @return
*/
public int deleteRoleDept(Long[] ids);
/**
* 使
*
* @param deptId ID
* @return
*/
public int selectCountRoleDeptByDeptId(Long deptId);
/**
*
*
* @param roleDeptList
* @return
*/
public int batchRoleDept(List<SysRoleDept> roleDeptList);
}