package com.lyms.cm.service.sys; import com.lyms.cm.entity.sys.SysRoles; import com.lyms.exception.SystemException; import com.lyms.web.service.BaseService; /** *

* 角色服务类 *

* * @author maliang * @since 2017-03-02 */ public interface SysRolesService extends BaseService { /** * 添加角色信息 * * @param role * @return * @throws SystemException */ public boolean addRole(SysRoles role) throws SystemException; /** * 修改角色信息 * * @param role * @return * @throws SystemException */ public boolean updateRole(SysRoles role) throws SystemException; }