|
@@ -3,6 +3,8 @@ package com.ruoyi.system.mapper;
|
|
import com.ruoyi.common.core.page.BaseMapperPlus;
|
|
import com.ruoyi.common.core.page.BaseMapperPlus;
|
|
import com.ruoyi.system.domain.SysRoleDept;
|
|
import com.ruoyi.system.domain.SysRoleDept;
|
|
|
|
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 角色与部门关联表 数据层
|
|
* 角色与部门关联表 数据层
|
|
*
|
|
*
|
|
@@ -10,4 +12,12 @@ import com.ruoyi.system.domain.SysRoleDept;
|
|
*/
|
|
*/
|
|
public interface SysRoleDeptMapper extends BaseMapperPlus<SysRoleDept> {
|
|
public interface SysRoleDeptMapper extends BaseMapperPlus<SysRoleDept> {
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 批量新增角色部门信息
|
|
|
|
+ *
|
|
|
|
+ * @param roleDeptList 角色部门列表
|
|
|
|
+ * @return 结果
|
|
|
|
+ */
|
|
|
|
+ public int batchRoleDept(List<SysRoleDept> roleDeptList);
|
|
|
|
+
|
|
}
|
|
}
|