【更新】登录时如果新的用户登录没有菜单则清空顶部模块选中

This commit is contained in:
俞宝山
2026-01-27 00:22:02 +08:00
parent 93d7c5daf2
commit cf34cdb621
10 changed files with 80 additions and 5 deletions

View File

@@ -12,6 +12,10 @@
*/
package vip.xiaonuo.dev.api;
import cn.hutool.json.JSONObject;
import java.util.List;
/**
* 字典API
*
@@ -27,4 +31,12 @@ public interface DevDictApi {
* @date 2025/6/6 13:04
*/
String getDictLabel(String typeCode, String value);
/**
* 根据父类型获取字典列表
*
* @author xuyuxiang
* @date 2025/6/6 13:04
*/
List<JSONObject> getDictListByParentDictValue(String typeCode);
}