对比新文件 |
| | |
| | | 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<DictionaryItemInfo> { |
| | | |
| | | 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<DictionaryItemInfo> selectDataGrid(Page<DictionaryItemInfo> page, Map<String, Object> condition); |
| | | |
| | | List<DictionaryTypeInfo> selectExistInfo(@Param("id") Long id,@Param("value") String value,@Param("text") String text); |
| | | |
| | | List<DictionaryItemInfo> selectByType(@Param("dictionaryType") String dictionaryType); |
| | | } |