疯狂的狮子li
2021-04-12 4500db395fdad42c7689e17ef6e3965a6caebdcc
ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysDictTypeMapper.java
@@ -1,20 +1,21 @@
package com.ruoyi.system.mapper;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.common.core.domain.entity.SysDictType;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
/**
 * 字典表 数据层
 *
 *
 * @author ruoyi
 */
@Mapper
public interface SysDictTypeMapper
{
public interface SysDictTypeMapper extends BaseMapper<SysDictType> {
    /**
     * 根据条件分页查询字典类型
     *
     *
     * @param dictType 字典类型信息
     * @return 字典类型集合信息
     */
@@ -22,14 +23,14 @@
    /**
     * 根据所有字典类型
     *
     *
     * @return 字典类型集合信息
     */
    public List<SysDictType> selectDictTypeAll();
    /**
     * 根据字典类型ID查询信息
     *
     *
     * @param dictId 字典类型ID
     * @return 字典类型
     */
@@ -37,7 +38,7 @@
    /**
     * 根据字典类型查询信息
     *
     *
     * @param dictType 字典类型
     * @return 字典类型
     */
@@ -45,7 +46,7 @@
    /**
     * 通过字典ID删除字典信息
     *
     *
     * @param dictId 字典ID
     * @return 结果
     */
@@ -53,7 +54,7 @@
    /**
     * 批量删除字典类型信息
     *
     *
     * @param dictIds 需要删除的字典ID
     * @return 结果
     */
@@ -61,7 +62,7 @@
    /**
     * 新增字典类型信息
     *
     *
     * @param dictType 字典类型信息
     * @return 结果
     */
@@ -69,7 +70,7 @@
    /**
     * 修改字典类型信息
     *
     *
     * @param dictType 字典类型信息
     * @return 结果
     */
@@ -77,7 +78,7 @@
    /**
     * 校验字典类型称是否唯一
     *
     *
     * @param dictType 字典类型
     * @return 结果
     */