package com.lyms.cm.service.sys;
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;
}