SysRoleDeptMapper.java 466 B

1234567891011121314151617181920212223
  1. package com.ruoyi.system.mapper;
  2. import com.ruoyi.common.core.page.BaseMapperPlus;
  3. import com.ruoyi.system.domain.SysRoleDept;
  4. import java.util.List;
  5. /**
  6. * 角色与部门关联表 数据层
  7. *
  8. * @author ruoyi
  9. */
  10. public interface SysRoleDeptMapper extends BaseMapperPlus<SysRoleDept> {
  11. /**
  12. * 批量新增角色部门信息
  13. *
  14. * @param roleDeptList 角色部门列表
  15. * @return 结果
  16. */
  17. public int batchRoleDept(List<SysRoleDept> roleDeptList);
  18. }