通过字典id获取字典的名称和编码信息顺序修改

pull/57/head
Liyanjun 2023-07-03 22:02:37 +08:00
parent 3a531ae3ec
commit 8e8bba6556
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ public class DictServiceImpl extends ServiceImpl<DictMapper, SysDict> implements
if (sysDict == null) {
return new DictDetail();
} else {
return new DictDetail(sysDict.getDictId(), sysDict.getDictName(), sysDict.getDictCode(), sysDict.getDictSort());
return new DictDetail(sysDict.getDictId(), sysDict.getDictCode(), sysDict.getDictName(), sysDict.getDictSort());
}
}