|
@@ -25,7 +25,7 @@ public class SendSmsController {
|
|
|
@Autowired
|
|
|
private IInvestigateUserService investigateUserService;
|
|
|
@Autowired
|
|
|
- private IInvestigateTableService iInvestigateTableService;
|
|
|
+ private IInvestigateTableService investigateTableService;
|
|
|
|
|
|
/**
|
|
|
* 给对应考察团发送密码短信
|
|
@@ -48,7 +48,7 @@ public class SendSmsController {
|
|
|
public AjaxResult investigateTableNotice(InvestigateTable investigateTable) {
|
|
|
Long investigateTableId = investigateTable.getInvestigateTableId();
|
|
|
List<InvestigateUser> investigateUserList = investigateTable.getInvestigateUserList();
|
|
|
- iInvestigateTableService.sendBatchSmsTable(investigateTableId, investigateUserList);
|
|
|
+ investigateTableService.sendBatchSmsTable(investigateTableId, investigateUserList);
|
|
|
return AjaxResult.success();
|
|
|
}
|
|
|
|
|
@@ -62,7 +62,7 @@ public class SendSmsController {
|
|
|
public AjaxResult sendBatchSmsTableUpdate(InvestigateTable investigateTable) {
|
|
|
Long investigateTableId = investigateTable.getInvestigateTableId();
|
|
|
List<InvestigateUser> investigateUserList = investigateTable.getInvestigateUserList();
|
|
|
- iInvestigateTableService.sendBatchSmsTableUpdate(investigateTableId, investigateUserList);
|
|
|
+ investigateTableService.sendBatchSmsTableUpdate(investigateTableId, investigateUserList);
|
|
|
return AjaxResult.success();
|
|
|
}
|
|
|
}
|