package com.gk.firework.Mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.gk.firework.Domain.DictionaryItemInfo; import com.gk.firework.Domain.DictionaryTypeInfo; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; import java.util.Map; @Repository public interface DictionaryItemInfoMapper extends BaseMapper { int deleteByPrimaryKey(Long id); int insert(DictionaryItemInfo record); int insertSelective(DictionaryItemInfo record); DictionaryItemInfo selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(DictionaryItemInfo record); int updateByPrimaryKey(DictionaryItemInfo record); List selectDataGrid(Page page, Map condition); List selectExistInfo(@Param("id") Long id,@Param("value") String value,@Param("text") String text); List selectByType(@Param("dictionaryType") String dictionaryType); }