weaver-hrm-salary/src/com/engine/salary/mapper/auth/AuthMapper.java

11 lines
270 B
Java

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<AuthDTO> getAuth(@Param("uid") Long uid, @Param("page") String page);
}