Commit 53d307a2 authored by dahai's avatar dahai

push

parent feca00ef
......@@ -594,6 +594,7 @@ public class TaskListServiceImpl implements TaskListService {
@Override
@Transactional(rollbackFor = Exception.class)
public boolean saveTask(List<Map<String, Object>> list, String submitName, String process) {
if (list.size()>0){
Map<String, Object> stringObjectMap = list.get(0);
TaskEntity taskEntity = new TaskEntity();
taskEntity.setCardType(Long.valueOf(stringObjectMap.get("CARD_TYPE_ID") + ""));
......@@ -611,6 +612,7 @@ public class TaskListServiceImpl implements TaskListService {
groupNoEntity.setTaskId(taskEntity.getTaskId());
groupNoMapper.saveGroupNo(groupNoEntity);
}
}
return true;
}
......
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