/************************************************************ * * @packageName : io.company.localhost.commoncodMapper * @fileName : commoncodMapper.java * @author : 공현지 * @date : 25.01.07 * @description : * * =========================================================== * DATE AUTHOR NOTE * ----------------------------------------------------------- * 24.12.06 공현지 최초 생성 * *************************************************************/ package io.company.localhost.mapper; import java.util.List; import org.apache.ibatis.annotations.Mapper; import io.company.localhost.common.dto.MapDto; @Mapper public interface commoncodMapper { List selectWordCategory(); Long insertCategory(MapDto map); List selectColorList(String type); List selectMbtiList(); List selectPwhintList(); int updateColorYon(MapDto map); int updateColorChange(MapDto map); List selectYearCategories(); List selectCategories(); Long selectcheckCategoryExists(MapDto map); List selectVacationType(); }