对比新文件 |
| | |
| | | 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<DictionaryItemInfo> { |
| | | |
| | | void selectDataGrid(PageInfo pageInfo); |
| | | |
| | | DictionaryItemInfo selctByText(String text); |
| | | |
| | | DictionaryItemInfo selctByValue(String value); |
| | | |
| | | List<DictionaryTypeInfo> selectExistInfo(Long id, String value, String text); |
| | | |
| | | List<DictionaryItemInfo> selectByType(String dictionaryType); |
| | | } |