package io.company.localhost.mapper; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import io.company.localhost.common.dto.MapDto; @Mapper public interface localvacaMapper { void insertVacation(MapDto map); List findVacations(@Param("year") int year, @Param("month") int month); List getUsedVacations(@Param("userId") Long userId); List getReceivedVacations(@Param("userId") Long userId); List getEmployeeRemainingVacation(); List getCommonCodeNames(); }