空域初始化

This commit is contained in:
zhulongchuan 2025-09-11 21:26:20 +08:00
parent 49c836fcfd
commit f99c0d6614
404 changed files with 7852 additions and 6724 deletions

View File

@ -35,6 +35,11 @@
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>
<!-- pagehelper 分页插件 -->
<dependency>
<groupId>com.github.pagehelper</groupId>

View File

@ -207,6 +207,20 @@ public class DictUtils
return StringUtils.stripEnd(propertyString.toString(), SEPARATOR);
}
/**
* 根据字典类型获取字典所有标签
*
* @param dictType 字典类型
* @return 字典值
*/
public static List<SysDictData> getDictDataByType(String dictType)
{
StringBuilder propertyString = new StringBuilder();
List<SysDictData> datas = getDictCache(dictType);
return datas;
}
/**
* 删除指定字典缓存
*

Some files were not shown because too many files have changed in this diff Show More