Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
customer-service
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
QG
customer-service
Commits
3a503501
Commit
3a503501
authored
Aug 26, 2020
by
suntao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
字符串 为空 null 字符串了
parent
073cc0c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
WorkOrderServiceImpl.java
...uantgroup/customer/service/impl/WorkOrderServiceImpl.java
+3
-3
No files found.
src/main/java/cn/quantgroup/customer/service/impl/WorkOrderServiceImpl.java
View file @
3a503501
...
...
@@ -54,7 +54,7 @@ public class WorkOrderServiceImpl implements IWorkOrderService {
Page
<
WorkOrderVO
>
map
=
page
.
map
(
it
->
{
WorkOrderVO
workOrderVO
=
new
WorkOrderVO
();
workOrderVO
.
setWorkOrderId
(
it
.
getWorkOrderId
()
+
""
);
workOrderVO
.
setWorkOrderId
(
it
.
getWorkOrderId
()
!=
null
?
it
.
getWorkOrderId
()+
""
:
null
);
workOrderVO
.
setUserName
(
it
.
getUserName
());
workOrderVO
.
setPhone
(
it
.
getPhone
());
workOrderVO
.
setSubject
(
it
.
getSubject
());
...
...
@@ -66,8 +66,8 @@ public class WorkOrderServiceImpl implements IWorkOrderService {
workOrderVO
.
setStatus
(
it
.
getStatus
().
getDesc
());
workOrderVO
.
setCreateUsername
(
it
.
getCreateUsername
());
workOrderVO
.
setOpUsername
(
it
.
getOpUsername
());
workOrderVO
.
setDurationTimes
(
it
.
getDurationTimes
()
+
""
);
workOrderVO
.
setDuration
(
it
.
getDuration
()
+
""
);
workOrderVO
.
setDurationTimes
(
it
.
getDurationTimes
()
!=
null
?
it
.
getDurationTimes
()+
""
:
null
);
workOrderVO
.
setDuration
(
it
.
getDuration
()
!=
null
?
it
.
getDuration
()+
""
:
null
);
workOrderVO
.
setCreatedAt
(
it
.
getCreatedAt
()
==
null
?
""
:
DateUtil
.
format
(
it
.
getCreatedAt
(),
DateUtil
.
DATE_FORMAT_1
));
workOrderVO
.
setOpAt
(
it
.
getOpAt
()
==
null
?
""
:
DateUtil
.
format
(
it
.
getOpAt
(),
DateUtil
.
DATE_FORMAT_1
));
workOrderVO
.
setUpdatedAt
(
it
.
getUpdatedAt
()
==
null
?
""
:
DateUtil
.
format
(
it
.
getUpdatedAt
(),
DateUtil
.
DATE_FORMAT_1
));
...
...
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