package com.gk.firework.Service; import com.baomidou.mybatisplus.extension.service.IService; import com.gk.firework.Domain.DictionaryItemInfo; import com.gk.firework.Domain.DictionaryTypeInfo; import com.gk.firework.Domain.Utils.PageInfo; import java.util.List; public interface DictionaryItemService extends IService { void selectDataGrid(PageInfo pageInfo); DictionaryItemInfo selctByText(String text); DictionaryItemInfo selctByValue(String value); List selectExistInfo(Long id, String value, String text); List selectByType(String dictionaryType); }