|  | @@ -498,8 +498,16 @@ public class TemplateGenerator {
 | 
	
		
			
				|  |  |          if (blastList.isEmpty()) {
 | 
	
		
			
				|  |  |              throw new BusinessException("EB3100023");
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  | -        //TODO boundaries 没有数据
 | 
	
		
			
				|  |  | -        dataModel.put("boundaries", new ArrayList<>());
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        //边界
 | 
	
		
			
				|  |  | +        DBoundaryMapper dBoundaryMapper = UtilTools.getBean(DBoundaryMapper.class);
 | 
	
		
			
				|  |  | +        DBoundarySQLBuilder sb = new DBoundarySQLBuilder();
 | 
	
		
			
				|  |  | +        DBoundarySQLBuilder.Criteria sc = sb.createCriteria();
 | 
	
		
			
				|  |  | +        sc.andAidEqualTo(aid);
 | 
	
		
			
				|  |  | +        List<DBoundary> boundaries = dBoundaryMapper.selectByExample(sb);
 | 
	
		
			
				|  |  | +        dataModel.put("boundaries", boundaries);
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |          dataModel.put("blastnum", blastList.size());
 | 
	
		
			
				|  |  |          dataModel.put("blastList", blastList);
 | 
	
		
			
				|  |  |          DGasGatherAreaMapper gatherMapper = UtilTools.getBean(DGasGatherAreaMapper.class);
 |