From 551d18a095e8fe462e4099fdd5b2578e12934d45 Mon Sep 17 00:00:00 2001
From: Tomas <tomasysh@gmail.com>
Date: 星期二, 08 二月 2022 12:25:44 +0800
Subject: [PATCH] Merge branch 'Phase3' of https://dev.pollex.com.tw:8443/r/pcalife/PAM into Phase3

---
 pamapi/src/main/java/com/pollex/pam/service/mapper/ConsultantDTOMapper.java |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/pamapi/src/main/java/com/pollex/pam/service/mapper/ConsultantDTOMapper.java b/pamapi/src/main/java/com/pollex/pam/service/mapper/ConsultantDTOMapper.java
index 0628ca2..0ff2637 100644
--- a/pamapi/src/main/java/com/pollex/pam/service/mapper/ConsultantDTOMapper.java
+++ b/pamapi/src/main/java/com/pollex/pam/service/mapper/ConsultantDTOMapper.java
@@ -12,7 +12,7 @@
 
 @Service
 public class ConsultantDTOMapper {
-	
+
 	@Autowired
     ApplicationProperties applicationProperty;
 
@@ -21,10 +21,14 @@
 		target.setPhotoPath(FileUtil.toPath(source.getPhotoFileName(), applicationProperty.getFileFolderPath()));
 		String expertise = StringUtils.convertToString(source.getExpertise(), ",");
 		target.setExpertise(expertise);
+
+        String serveArea = StringUtils.convertToString(source.getServeArea(), ",");
+        target.setServeArea(serveArea);
+
 		target.setAward(source.getAwards());
 		target.setExperience(source.getExperiences());
 	}
-	
-	
+
+
 
 }

--
Gitblit v1.8.0