[测评系统]--测评系统核心代码库
林致杰
2023-10-10 0f877d7ba62205f94e615eb0ab1950b3350c1436
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);
}