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
@@ -31,4 +31,15 @@
where d.deleted = false
and d.dict_type = #{dictType}
</select>
<select id="selectI18nByDictTypeAndValue" resultType="com.cf.imes.module.system.dal.dataobject.dict.DictDataDO">
select
coalesce(i.label, d.label) as label
from system_dict_data d
left join system_dict_data_i18n i
on d.id = i.dict_data_id and i.locale = #{locale}
where d.deleted = false
and d.dict_type = #{dictType}
and d.value = #{value}
</select>
</mapper>