de/backend/src/main/java/io/dataease/ext/ExtSysAuthMapper.java
2022-04-15 16:08:33 +08:00

13 lines
394 B
Java

package io.dataease.ext;
import org.apache.ibatis.annotations.Param;
public interface ExtSysAuthMapper {
Boolean checkTreeNoManageCount(@Param("userId") Long userId, @Param("modelType") String modelType, @Param("nodeId") String nodeId);
String copyAuth(@Param("authSource") String authSource, @Param("authSourceType") String authSourceType, @Param("authUser") String authUser);
}