아이디찾기 일부 결과값 오류 수정
@444112412beaaafb45aa862f11345e2bf6cd6bf3
--- src/main/java/itn/let/uat/uia/web/EgovLoginController.java
+++ src/main/java/itn/let/uat/uia/web/EgovLoginController.java
... | ... | @@ -30,6 +30,7 @@ |
| 30 | 30 |
import javax.servlet.http.HttpServletResponse; |
| 31 | 31 |
import javax.servlet.http.HttpSession; |
| 32 | 32 |
|
| 33 |
+import org.apache.commons.lang.StringUtils; |
|
| 33 | 34 |
import org.apache.commons.lang3.ArrayUtils; |
| 34 | 35 |
import org.apache.http.HttpResponse; |
| 35 | 36 |
import org.apache.http.NameValuePair; |
... | ... | @@ -3172,7 +3173,9 @@ |
| 3172 | 3173 |
* */ |
| 3173 | 3174 |
UserManageVO userInfoVO = new UserManageVO(); |
| 3174 | 3175 |
userInfoVO.setEmplyrNm(userManageVO.getEmplyrNm()); // 이름 |
| 3175 |
- userInfoVO.setMoblphonNo(userManageVO.getMoblphonNo()); // 휴대폰번호 |
|
| 3176 |
+ if (StringUtils.isEmpty(userManageVO.getMblDn())) {
|
|
| 3177 |
+ userInfoVO.setMoblphonNo(userManageVO.getMoblphonNo()); // 휴대폰번호 |
|
| 3178 |
+ } |
|
| 3176 | 3179 |
userInfoVO.setEmailAdres(userManageVO.getEmailAdres()); // 이메일주소 |
| 3177 | 3180 |
userInfoVO.setMblDn(userManageVO.getMblDn()); // Dn |
| 3178 | 3181 |
|
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?