mirror of https://gitee.com/stylefeng/roses
通过字典id获取字典的名称和编码信息顺序修改
parent
3a531ae3ec
commit
8e8bba6556
|
@ -275,7 +275,7 @@ public class DictServiceImpl extends ServiceImpl<DictMapper, SysDict> implements
|
||||||
if (sysDict == null) {
|
if (sysDict == null) {
|
||||||
return new DictDetail();
|
return new DictDetail();
|
||||||
} else {
|
} else {
|
||||||
return new DictDetail(sysDict.getDictId(), sysDict.getDictName(), sysDict.getDictCode(), sysDict.getDictSort());
|
return new DictDetail(sysDict.getDictId(), sysDict.getDictCode(), sysDict.getDictName(), sysDict.getDictSort());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue