Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
hp-smart
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
platform
hp-smart
Commits
8112ea73
Commit
8112ea73
authored
Jan 26, 2024
by
wuwenlong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
daoutil bugfix;
parent
48b2df70
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
DaoUtils.java
src/main/java/com/baosight/hpjx/core/dao/DaoUtils.java
+2
-2
No files found.
src/main/java/com/baosight/hpjx/core/dao/DaoUtils.java
View file @
8112ea73
...
...
@@ -233,7 +233,7 @@ public class DaoUtils {
String
userId
;
try
{
userId
=
MapUtils
.
getString
(
map
,
"updatedBy"
);
if
(
StringUtils
.
is
Empty
(
userId
))
{
if
(
StringUtils
.
is
Blank
(
userId
))
{
userId
=
UserSession
.
getLoginName
();
userId
=
userId
==
null
||
userId
.
length
()
>
32
?
"System"
:
userId
;
}
...
...
@@ -244,7 +244,7 @@ public class DaoUtils {
// 修改人名称
String
userName
=
MapUtils
.
getString
(
map
,
"updatedName"
);
try
{
if
(
StringUtils
.
is
Empty
(
userName
))
{
if
(
StringUtils
.
is
Blank
(
userName
))
{
userName
=
UserSession
.
getLoginCName
();
}
}
catch
(
Exception
e
)
{
...
...
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