package com.engine.salary.service.auth; import com.engine.salary.entity.auth.param.AuthRoleSaveParam; /** * 角色 *
Copyright: Copyright (c) 2024
*Company: 泛微软件
* * @author qiantao * @version 1.0 **/ public interface AuthRoleService { /** * 添加角色 * @param param * @return */ Long saveRole(AuthRoleSaveParam param); /** * 删除角色 * @param id */ void deleteRole(Long id); }