Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
liuhui
/
sinobase-homepage
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
666bb2a0
authored
May 08, 2021
by
liuhui
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
微服务首页拆分,后台拆分基本完成
parent
b1f4c862
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
src/main/java/com/sinobase/project/system/sino/service/PlatformService.java
src/main/java/com/sinobase/project/system/sino/service/PlatformService.java
View file @
666bb2a0
...
...
@@ -3,6 +3,7 @@ package com.sinobase.project.system.sino.service;
import
java.io.File
;
import
java.io.FileNotFoundException
;
import
java.util.ArrayList
;
import
java.util.Date
;
import
java.util.HashMap
;
import
java.util.HashSet
;
import
java.util.LinkedHashMap
;
...
...
@@ -139,6 +140,13 @@ public class PlatformService {
user
.
setFlowRoles
(
flowRoles
);
user
.
setFlowRoleIds
(
getStr
(
userMap
,
"flowRoleIds"
));
User
businessUsers
=
userService
.
selectUserById
(
user
.
getUserId
());
if
(
businessUsers
!=
null
)
{
user
.
setLoginDate
(
businessUsers
.
getLoginDate
());
businessUsers
.
setLoginDate
(
new
Date
());
userService
.
updateUserInfo
(
businessUsers
);
}
return
user
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment