Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ops
/
monitor-service
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
qinchao
7 years ago
Commit
299d5646a1fc2be6d22e1bba3087a517c7acf1b7
1 parent
dc19d3e8
bug修改
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
monitor-service-other/src/main/java/com/monitor/other/worksystem/service/impl/WorkSystemSupport.java
monitor-service-other/src/main/java/com/monitor/other/worksystem/service/impl/WorkSystemSupport.java
View file @
299d564
...
...
@@ -103,7 +103,11 @@ public class WorkSystemSupport {
mobileBuilder
.
append
(
str
).
append
(
","
);
}
String
sms
=
"您处理过的工单:"
+
workid
+
" 已经处理完毕,处理结果:"
+
result
;
alarmMsgService
.
sendSms
(
"work_system"
,
sms
,
mobileBuilder
.
toString
().
substring
(
0
,
mobileBuilder
.
toString
().
length
()-
1
));
String
mobiles
=
""
;
if
(
mobileBuilder
.
toString
().
length
()>
0
){
mobiles
=
mobileBuilder
.
toString
().
substring
(
0
,
mobileBuilder
.
toString
().
length
()-
1
);
}
alarmMsgService
.
sendSms
(
"work_system"
,
sms
,
mobiles
);
//发送邮件
addLeader
(
builder
);
mailService
.
sendHTMLMail
(
builder
.
build
());
...
...
Please
register
or
login
to post a comment