You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
964 B
Java

8 years ago
package com.ruoyi.system.mapper;
8 years ago
import java.util.List;
8 years ago
import com.ruoyi.system.domain.SysRoleDept;
8 years ago
/**
*
*
* @author ruoyi
*/
8 years ago
public interface SysRoleDeptMapper
8 years ago
{
/**
* 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
*/
8 years ago
public int batchRoleDept(List<SysRoleDept> roleDeptList);
8 years ago
}