Compare commits

..

No commits in common. "0833adb705d4d76cced0d060e6f2156262837018" and "984990f8643a5f3f091e61aa0fd2a6271295c279" have entirely different histories.

2 changed files with 3 additions and 1 deletions

View File

@ -292,7 +292,7 @@ public class BatchSendTaskInfoServiceImpl implements IBatchSendTaskInfoService {
public AjaxResult batchSend(BatchSendTaskRecordDto batchSendTaskRecordDto) throws ClientException, IllegalAccessException {
log.info("开始创建批量推送任务---------------");
if (CollectionUtils.isEmpty(batchSendTaskRecordDto.getList())) {
return AjaxResult.success();
return new AjaxResult();
}
int start = batchSendTaskRecordDto.getList().size();
batchSendTaskRecordDto.setList(new ArrayList<>(batchSendTaskRecordDto.getList().stream()

View File

@ -32,6 +32,7 @@
<result property="templateId" column="template_id"/>
<result property="templateName" column="template_name"/>
<result property="nodeContent" column="node_content"/>
<result property="nodeExecuteStatus" column="node_execute_status"/>
<result property="physicalExaminationLabel" column="physical_examination_label"/>
<result property="createBy" column="create_by"/>
<result property="createTime" column="create_time"/>
@ -269,6 +270,7 @@
bstri.template_id,
bstri.template_name,
bstri.node_content,
bstri.node_execute_status,
bstri.physical_examination_label,
bstri.create_by,
bstri.create_time,