1、新增组织、用户、角色、短信日志、短信模版、token管理easyexcel导出国际化,i18n文件整理;2、新增字典cache支持多语言;

This commit is contained in:
gaoqr
2025-11-24 14:18:50 +08:00
parent ae1341b6ff
commit c2181de374
19 changed files with 312 additions and 113 deletions
@@ -37,6 +37,17 @@ public interface DictDataApi {
CommonResult<DictDataRespDTO> getDictData(@RequestParam("dictType") String dictType,
@RequestParam("value") String value);
@GetMapping(PREFIX + "/i18n/get")
@Operation(summary = "获得指定的字典数据")
@Parameters({
@Parameter(name = "dictType", description = "字典类型", example = "SEX", required = true),
@Parameter(name = "description", description = "字典数据值", example = "1", required = true),
@Parameter(name = "description", description = "语种", example = "en", required = true)
})
CommonResult<DictDataRespDTO> getDictI18nData(@RequestParam("dictType") String dictType,
@RequestParam("value") String value,
@RequestParam("language") String language);
@GetMapping(PREFIX + "/parse")
@Operation(summary = "解析获得指定的字典数据")
@Parameters({