2024-08-01 10:56:29 +08:00
|
|
|
package com.engine.salary.mapper.auth;
|
|
|
|
|
|
|
|
|
|
import com.engine.salary.entity.auth.dto.AuthDTO;
|
2024-08-01 16:19:23 +08:00
|
|
|
import org.apache.ibatis.annotations.Param;
|
2024-08-01 10:56:29 +08:00
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
public interface AuthMapper {
|
|
|
|
|
|
2024-08-01 16:19:23 +08:00
|
|
|
List<AuthDTO> getAuth(@Param("uid") Long uid, @Param("page") String page);
|
2024-08-01 10:56:29 +08:00
|
|
|
}
|