Toggle navigation
Toggle navigation
This project
Loading...
Sign in
YOHOBUY
/
yohobuy-union
·
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
Ge
8 years ago
Commit
7bddc305081a5fccba8c77c262388a174909e270
1 parent
18641f3b
联盟解决空指针问题
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
server/src/main/java/com/yoho/activity/service/impl/TencentMktServiceImpl.java
server/src/main/java/com/yoho/activity/service/impl/TencentMktServiceImpl.java
View file @
7bddc30
...
...
@@ -234,7 +234,7 @@ public class TencentMktServiceImpl implements ITencentMktService {
}
}
if
(
response
.
getCode
()
==
200
)
{
if
(
response
.
getCode
()
==
200
&&
StringUtils
.
isNotEmpty
(
password
)
)
{
// 根据活动查询消息,如果是空则使用默认消息,否则使用配置的短信内容
String
smsContent
=
"【Yoho!Buy有货】恭喜您获得优惠券大礼包,您的登录账户是"
+
mobile
+
", 密码是"
+
password
+
"(随机6位数字+2位字母);更多惊喜等着您!【有货】"
;
...
...
Please
register
or
login
to post a comment