mirror of https://gitee.com/stylefeng/roses
【7.6.0】【dict】整理更新字典业务
parent
c0593f60f3
commit
1823c29170
|
@ -135,8 +135,14 @@ public class DictServiceImpl extends ServiceImpl<DictMapper, SysDict> implements
|
|||
// 不能修改字典类型和编码
|
||||
sysDict.setDictTypeId(null);
|
||||
sysDict.setDictCode(null);
|
||||
|
||||
// 填充拼音
|
||||
sysDict.setDictNamePinyin(pinYinApi.parseEveryPinyinFirstLetter(sysDict.getDictName()));
|
||||
|
||||
// 填充pids
|
||||
String pids = this.createPids(sysDict.getDictParentId());
|
||||
sysDict.setDictPids(pids);
|
||||
|
||||
this.updateById(sysDict);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue