韦忠喜提交

master
weizhongxi 3 years ago
parent b16a03d05d
commit 32c121a470

@ -170,6 +170,7 @@ public class BuildRecordController {
return new ResponseEntity<>(CommonResponse.createByError(ResponseCode.EMPTY_ARGUMENT), HttpStatus.OK);
}
//判断内容是否含有不良词
if(buildRecordSendVO.getRemoteRecord() != null){
if (!StringUtils.isBlank(buildRecordSendVO.getRemoteRecord().getSmsContent())){
WordFilter wf = new WordFilter();
String filter_search = wf.filter_search(buildRecordSendVO.getRemoteRecord().getSmsContent());
@ -177,6 +178,7 @@ public class BuildRecordController {
return new ResponseEntity<>(CommonResponse.createByError(ResponseCode.NO_SMS_BAD), HttpStatus.OK);
}
}
}
SendBigDataDTO sendBigDataDTO = new SendBigDataDTO();
BeanUtil.copyProperties(buildRecordSendVO, sendBigDataDTO);
// 调用发送课包任务,开始发送

Loading…
Cancel
Save