linzhijie
2021-03-11 84fea994d2db7dc313ad1774f34eb12a45f8d6e7
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
package com.ots.project.system.dict.mapper;
import com.ots.project.system.dict.domain.DictType;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
 
@Mapper
public interface DictTypeMapper {
    
    List<DictType> selectDictTypeList(DictType dictType);
    
    List<DictType> selectDictTypeAll();
    
    DictType selectDictTypeById(Long dictId);
    
    DictType selectDictTypeByType(String dictType);
    
    int deleteDictTypeById(Long dictId);
    
    int deleteDictTypeByIds(Long[] ids);
    
    int insertDictType(DictType dictType);
    
    int updateDictType(DictType dictType);
    
    DictType checkDictTypeUnique(String dictType);
}