RuoYi-Vue-Plus/ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysRoleDeptMapper.java

24 lines
466 B
Java
Raw Normal View History

2020-07-20 10:41:32 +08:00
package com.ruoyi.system.mapper;
2020-02-13 10:48:51 +08:00
import com.ruoyi.common.core.page.BaseMapperPlus;
2020-07-20 10:41:32 +08:00
import com.ruoyi.system.domain.SysRoleDept;
2020-02-13 10:48:51 +08:00
import java.util.List;
2020-02-13 10:48:51 +08:00
/**
* 角色与部门关联表 数据层
*
2020-02-13 10:48:51 +08:00
* @author ruoyi
*/
public interface SysRoleDeptMapper extends BaseMapperPlus<SysRoleDept> {
2020-02-13 10:48:51 +08:00
/**
* 批量新增角色部门信息
*
* @param roleDeptList 角色部门列表
* @return 结果
*/
public int batchRoleDept(List<SysRoleDept> roleDeptList);
2020-02-13 10:48:51 +08:00
}