|  | @ -167,10 +167,9 @@ public class PatientInfoPlatFormService {
 | 
	
		
			
				|  |  |             }
 | 
	
		
			
				|  |  |             //标签类型
 | 
	
		
			
				|  |  |             List<String> labelList = new ArrayList<>();
 | 
	
		
			
				|  |  |             Integer sex = patientDO.getSex();
 | 
	
		
			
				|  |  |             String sexName = sex!=null?(1==sex?"男性":"女性"):"未知";
 | 
	
		
			
				|  |  |             labelList.add(sexName);
 | 
	
		
			
				|  |  |             List<WlyyPatientLabelDO> labelDOS = patientLabelDao.findByPatient(patient);
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |             //1.4.2老人标签
 | 
	
		
			
				|  |  |             List<WlyyPatientLabelDO> labelDOS = patientLabelDao.findByPatientAndLabelType(patient,"3");
 | 
	
		
			
				|  |  |             List<String> labeltmp = labelDOS.stream().map(WlyyPatientLabelDO::getLabelName).collect(Collectors.toList());
 | 
	
		
			
				|  |  |             labelList.addAll(labeltmp);
 | 
	
		
			
				|  |  |             tmp.put("patientLabel",labelList);
 |