SysRolesService.java 1.34 KB
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
package com.lyms.cm.service.sys;

import com.baomidou.mybatisplus.plugins.Page;
import com.lyms.cm.entity.sys.SysRoles;
import com.lyms.exception.SystemException;
import com.lyms.web.service.BaseService;

/**
* <p>
* 角色服务类
* </p>
*
* @author maliang
* @since 2017-03-02
*/
public interface SysRolesService extends BaseService<SysRoles> {

/**
* 添加角色信息
*
* @param role
* @return
* @throws SystemException
*/
public boolean addRole(SysRoles role) throws SystemException;

/**
* 修改角色信息
*
* @param role
* @return
* @throws SystemException
*/
public boolean updateRole(SysRoles role) throws SystemException;

/**
* 删除角色信息
*
* @param roleId
* @return
* @throws SystemException
*/
public boolean deleteRole(String roleId) throws SystemException;

/**
* 分页获取角色信息
* <p>
* 目前没有参数设置,过滤
*
* @param page
* @return
*/
public Page<SysRoles> getRolesByPage(Page<SysRoles> page) throws SystemException;

/**
* 根据roleId 获取角色信息
*
* @param roleId
* @return
* @throws SystemException
*/
public SysRoles getRoleById(String roleId) throws SystemException;

/**
* 禁/启用角色
*
* @param roleId
* @return
* @throws SystemException
*/
public boolean enable(String roleId) throws SystemException;

}