Sign in

luotong / gxb-fast · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • gxb-fast
  • ..
  • service
  • SysRoleDeptService.java
  • 高校邦快速开发平台
    e719eda9
    孙宁海 authored
    2017-08-25 16:42:13 +0800  
    Browse Code »
SysRoleDeptService.java 388 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package com.gxb.modules.sys.service;

import java.util.List;


/**
 * 角色与部门对应关系
 * 
 * @author chenshun
 * @email sunlightcs@gmail.com
 * @date 2017年6月21日 23:42:30
 */
public interface SysRoleDeptService {
	
	void saveOrUpdate(Long roleId, List<Long> deptIdList);
	
	/**
	 * 根据角色ID,获取部门ID列表
	 */
	List<Long> queryDeptIdList(Long roleId);
	
}