이지우 - 관리자 > 대상자목록 > 검색조건 생년월일에 암호화 추가

This commit is contained in:
JIWOO 2025-10-14 15:18:50 +09:00
parent 16a432b15e
commit 1b738412a4
2 changed files with 2 additions and 2 deletions

View File

@ -237,7 +237,7 @@ public class CmdTrgtMngController {
//생년월일검색
if(StringUtil.isNotEmpty(cndtnTrgtInfoMngVO.getSearchKeywordTo())){
selectCondition = " AND a.d_birth ='" +cndtnTrgtInfoMngVO.getSearchKeywordTo() + "' ";
selectCondition = " AND a.d_birth ='" + egovCryptoUtil.encrypt(cndtnTrgtInfoMngVO.getSearchKeywordTo()) + "' ";
}

View File

@ -232,7 +232,7 @@ public class CndtnTrgtMngController {
//생년월일검색
if(StringUtil.isNotEmpty(cndtnTrgtInfoMngVO.getSearchKeywordTo())){
selectCondition = " AND a.d_birth ='" +cndtnTrgtInfoMngVO.getSearchKeywordTo() + "' ";
selectCondition = " AND a.d_birth ='" + egovCryptoUtil.encrypt(cndtnTrgtInfoMngVO.getSearchKeywordTo()) + "' ";
}