jinpengyong
2021-05-25 3689936045a84b2c29899bee8680b2129e8ef43a
screen-api/src/main/java/com/moral/api/service/impl/UserGroupServiceImpl.java
@@ -45,6 +45,9 @@
    @Autowired
    private GroupMapper groupMapper;
    @Autowired
    private OperationLogUtils operationLogUtils;
    @Override
    @Transactional
    public void allotGroups(Map<String, Object> parameters) {
@@ -73,7 +76,7 @@
        //日志
        String account = userMapper.selectById((Integer) parameters.get("userId")).getAccount();
        String content = "给用户:" + account + "分配了组:" + groups.toString();
        OperationLogUtils.insertLog(request, content, Constants.UPDATE_OPERATE_TYPE);
        operationLogUtils.insertLog(request, content, Constants.UPDATE_OPERATE_TYPE);
    }
    @Override