Compare commits
No commits in common. "047741d04c5020143f37880456d5f21f31d0d055" and "1c0376f60c6a27da1a5122736b831ed7ec42c16a" have entirely different histories.
047741d04c
...
1c0376f60c
|
@ -149,8 +149,7 @@ public class DeptServiceImpl implements DeptService {
|
|||
});
|
||||
deptMapper.updateBatch(deptDOS, deptDOS.size());
|
||||
deptDO.setName(reqVO.getName());
|
||||
DeptDO parentDeptDO = deptMapper.selectById(deptDO.getParentId());
|
||||
deptDO.setParentOrganizationName(parentDeptDO.getParentOrganizationName() + ">" + reqVO.getName());
|
||||
deptDO.setParentOrganizationName(reqVO.getName());
|
||||
deptMapper.updateById(deptDO);
|
||||
// 发送刷新消息
|
||||
deptProducer.sendDeptRefreshMessage();
|
||||
|
|
Loading…
Reference in New Issue