You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-spms-java/src/main/java/com/glxp/api/service/auth/AuthRoleAdminService.java

21 lines
448 B
Java

2 years ago
package com.glxp.api.service.auth;
import com.glxp.api.entity.auth.AuthRole;
import com.glxp.api.entity.auth.AuthRoleAdmin;
import java.util.List;
public interface AuthRoleAdminService {
List<AuthRoleAdmin> listByAdminId(Long adminId);
int insertAuthRoleAdminAll(List<AuthRoleAdmin> authRoleAdminList);
int insertRolesAdminIdAll(List<Long> roles, Long adminId);
boolean updateAuthRoleAdmin(AuthRoleAdmin authRoleAdmin);
}