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);
|
}
|