优化租户添加模块

This commit is contained in:
季圣华
2021-10-13 00:48:42 +08:00
parent 365754512c
commit 6826e12540
5 changed files with 128 additions and 5 deletions

View File

@@ -527,6 +527,9 @@ public class UserService {
JSONObject tenantObj = new JSONObject();
tenantObj.put("tenantId", ue.getId());
tenantObj.put("loginName",ue.getLoginName());
tenantObj.put("userNumLimit", ue.getUserNumLimit());
tenantObj.put("expireTime", ue.getExpireTime());
tenantObj.put("remark", ue.getRemark());
tenantService.insertTenant(tenantObj, request);
logger.info("===============创建租户信息完成===============");
if (result > 0) {