package com.xzx.gc.role.mapper; import com.xzx.gc.entity.CoreRoleFunction; import com.xzx.gc.util.GcMapper; import com.xzx.gc.util.SqlResource; import java.util.List; @SqlResource("role.coreRoleFunction") public interface CoreRoleFunctionMapper extends GcMapper { List getRoleFunction(Long userId, Long orgId, String code); List getRoleChildrenFunction(Long userId, Long orgId, Long parentId); }