package com.engine.salary.mapper.auth; import com.engine.salary.entity.auth.dto.AuthDTO; import org.apache.ibatis.annotations.Param; import java.util.List; public interface AuthMapper { List getAuth(@Param("uid") Long uid, @Param("page") String page); }