Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
Project
Project
Details
Activity
Releases
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
youjj
cloud-platform
Commits
f833bb27
Commit
f833bb27
authored
Nov 11, 2020
by
hezhen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
123
parent
334c47db
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
CompanyInfoApplyBiz.java
...ithub/wxiaoqi/security/admin/biz/CompanyInfoApplyBiz.java
+1
-0
VehicleApplyBiz.java
...n/java/com/xxfc/platform/vehicle/biz/VehicleApplyBiz.java
+1
-0
No files found.
ace-modules/ace-admin/src/main/java/com/github/wxiaoqi/security/admin/biz/CompanyInfoApplyBiz.java
View file @
f833bb27
...
@@ -206,6 +206,7 @@ public class CompanyInfoApplyBiz extends BaseBiz<CompanyInfoApplyMapper, Company
...
@@ -206,6 +206,7 @@ public class CompanyInfoApplyBiz extends BaseBiz<CompanyInfoApplyMapper, Company
public
void
sendSms
(
CompanyInfoApply
companyInfoApply
){
public
void
sendSms
(
CompanyInfoApply
companyInfoApply
){
try
{
try
{
//发送短信通知用户
//发送短信通知用户
companyInfoApply
=
selectById
(
companyInfoApply
.
getId
());
List
<
String
>
smsParams
=
new
ArrayList
<>();
List
<
String
>
smsParams
=
new
ArrayList
<>();
String
name
=
StringUtils
.
isBlank
(
companyInfoApply
.
getName
())
?
""
:
companyInfoApply
.
getName
();
String
name
=
StringUtils
.
isBlank
(
companyInfoApply
.
getName
())
?
""
:
companyInfoApply
.
getName
();
smsParams
.
add
(
name
);
smsParams
.
add
(
name
);
...
...
xx-vehicle/xx-vehicle-server/src/main/java/com/xxfc/platform/vehicle/biz/VehicleApplyBiz.java
View file @
f833bb27
...
@@ -170,6 +170,7 @@ public class VehicleApplyBiz extends BaseBiz<VehicleApplyMapper, VehicleApply>{
...
@@ -170,6 +170,7 @@ public class VehicleApplyBiz extends BaseBiz<VehicleApplyMapper, VehicleApply>{
public
void
sendSms
(
VehicleApply
vehicleApply
){
public
void
sendSms
(
VehicleApply
vehicleApply
){
try
{
try
{
//发送短信通知用户
//发送短信通知用户
vehicleApply
=
selectById
(
vehicleApply
.
getId
());
List
<
String
>
smsParams
=
new
ArrayList
<>();
List
<
String
>
smsParams
=
new
ArrayList
<>();
String
name
=
StringUtils
.
isBlank
(
vehicleApply
.
getName
())
?
""
:
vehicleApply
.
getName
();
String
name
=
StringUtils
.
isBlank
(
vehicleApply
.
getName
())
?
""
:
vehicleApply
.
getName
();
smsParams
.
add
(
name
);
smsParams
.
add
(
name
);
...
...
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