liusheng
2024-08-28 bedd0a1cef215538df64470df6b8d4a022189136
ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysDictTypeMapper.java
@@ -2,17 +2,19 @@
import java.util.List;
import com.ruoyi.common.core.domain.entity.SysDictType;
import org.apache.ibatis.annotations.Mapper;
/**
 * 字典表 数据层
 *
 *
 * @author ruoyi
 */
@Mapper
public interface SysDictTypeMapper
{
    /**
     * 根据条件分页查询字典类型
     *
     *
     * @param dictType 字典类型信息
     * @return 字典类型集合信息
     */
@@ -20,14 +22,14 @@
    /**
     * 根据所有字典类型
     *
     *
     * @return 字典类型集合信息
     */
    public List<SysDictType> selectDictTypeAll();
    /**
     * 根据字典类型ID查询信息
     *
     *
     * @param dictId 字典类型ID
     * @return 字典类型
     */
@@ -35,7 +37,7 @@
    /**
     * 根据字典类型查询信息
     *
     *
     * @param dictType 字典类型
     * @return 字典类型
     */
@@ -43,7 +45,7 @@
    /**
     * 通过字典ID删除字典信息
     *
     *
     * @param dictId 字典ID
     * @return 结果
     */
@@ -51,7 +53,7 @@
    /**
     * 批量删除字典类型信息
     *
     *
     * @param dictIds 需要删除的字典ID
     * @return 结果
     */
@@ -59,7 +61,7 @@
    /**
     * 新增字典类型信息
     *
     *
     * @param dictType 字典类型信息
     * @return 结果
     */
@@ -67,7 +69,7 @@
    /**
     * 修改字典类型信息
     *
     *
     * @param dictType 字典类型信息
     * @return 结果
     */
@@ -75,7 +77,7 @@
    /**
     * 校验字典类型称是否唯一
     *
     *
     * @param dictType 字典类型
     * @return 结果
     */