Commit f833bb27 authored by hezhen's avatar hezhen

123

parent 334c47db
...@@ -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);
......
...@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment