郑永安
2023-09-19 69185134fcfaf913ea45f1255677225a2cc311a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.gk.hotwork.Mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.gk.hotwork.Domain.DictionaryTypeInfo;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
import java.util.Map;
 
@Repository
public interface DictionaryTypeInfoMapper extends BaseMapper<DictionaryTypeInfo> {
    int deleteByPrimaryKey(Long id);
 
    int insert(DictionaryTypeInfo record);
 
    int insertSelective(DictionaryTypeInfo record);
 
    DictionaryTypeInfo selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(DictionaryTypeInfo record);
 
    int updateByPrimaryKey(DictionaryTypeInfo record);
 
    List<DictionaryTypeInfo> selectDataGrid(Page<DictionaryTypeInfo> page, Map<String, Object> condition);
 
    List<DictionaryTypeInfo> selectExistInfo(@Param("id") Long id,@Param("code") String code,@Param("text") String text);
}