fix this issue (#12281) (#12766)

Co-authored-by: calvin <jianghuachinacom@163.com>
This commit is contained in:
Eric Gao 2022-11-07 15:32:36 +08:00 committed by GitHub
parent ffb8b6ef70
commit 309b5a94b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -137,7 +137,7 @@ public class UsersServiceImpl extends BaseServiceImpl implements UsersService {
* @throws Exception exception
*/
@Override
@Transactional
@Transactional(rollbackFor = Exception.class)
public Map<String, Object> createUser(User loginUser,
String userName,
String userPassword,
@ -177,7 +177,6 @@ public class UsersServiceImpl extends BaseServiceImpl implements UsersService {
result.put(Constants.DATA_LIST, user);
putMsg(result, Status.SUCCESS);
return result;
}
@Override