package com.ots.project.system.role.mapper;
|
import com.ots.project.system.role.domain.RoleDept;
|
import java.util.List;
|
|
public interface RoleDeptMapper {
|
|
public int deleteRoleDeptByRoleId(Long roleId);
|
|
public int deleteRoleDept(Long[] ids);
|
|
public int selectCountRoleDeptByDeptId(Long deptId);
|
|
public int batchRoleDept(List<RoleDept> roleDeptList);
|
}
|