시술, 이벤트 validation 삭제

This commit is contained in:
bd091
2025-10-24 22:43:06 +09:00
parent 8c36a92905
commit 03aa2abd8a
4 changed files with 37 additions and 57 deletions

View File

@@ -458,32 +458,32 @@ public class ContentsBbsServiceImpl implements ContentsBbsService {
map.put("msgDesc","제목 정보가 없습니다.");
}
if(true != ValidationCheckUtil.emptyCheck(content)){
check = false;
map.put("msgCode", Constants.FAIL);
map.put("msgDesc","시술예약(쁘띠) 상세 정보가 없습니다.");
}
if(true != ValidationCheckUtil.emptyCheck(hashtag)){
check = false;
map.put("msgCode", Constants.FAIL);
map.put("msgDesc","시술예약(쁘띠) 해시태그 정보가 없습니다.");
}
if(true != ValidationCheckUtil.emptyCheck(thumbnail_bottom_txt)){
check = false;
map.put("msgCode", Constants.FAIL);
map.put("msgDesc","시술예약(쁘띠) 썸네일 하단 정보가 없습니다.");
}
if(null==file|| file.isEmpty()){
check = false;
map.put("msgCode", Constants.FAIL);
map.put("msgDesc","배너 이미지 정보가 없습니다.");
}
if(null==content_file|| content_file.isEmpty()){
check = false;
map.put("msgCode", Constants.FAIL);
map.put("msgDesc","첨부파일 정보가 없습니다.");
}
// if(true != ValidationCheckUtil.emptyCheck(content)){
// check = false;
// map.put("msgCode", Constants.FAIL);
// map.put("msgDesc","시술예약(쁘띠) 상세 정보가 없습니다.");
// }
// if(true != ValidationCheckUtil.emptyCheck(hashtag)){
// check = false;
// map.put("msgCode", Constants.FAIL);
// map.put("msgDesc","시술예약(쁘띠) 해시태그 정보가 없습니다.");
// }
// if(true != ValidationCheckUtil.emptyCheck(thumbnail_bottom_txt)){
// check = false;
// map.put("msgCode", Constants.FAIL);
// map.put("msgDesc","시술예약(쁘띠) 썸네일 하단 정보가 없습니다.");
// }
//
// if(null==file|| file.isEmpty()){
// check = false;
// map.put("msgCode", Constants.FAIL);
// map.put("msgDesc","배너 이미지 정보가 없습니다.");
// }
// if(null==content_file|| content_file.isEmpty()){
// check = false;
// map.put("msgCode", Constants.FAIL);
// map.put("msgDesc","첨부파일 정보가 없습니다.");
// }
if(true == check){
// 사용자 확인
@@ -681,7 +681,7 @@ public class ContentsBbsServiceImpl implements ContentsBbsService {
map.put("msgCode", Constants.FAIL);
map.put("msgDesc","제목 정보가 없습니다.");
}
/*
if(true != ValidationCheckUtil.emptyCheck(content)){
check = false;
map.put("msgCode", Constants.FAIL);
@@ -712,7 +712,7 @@ public class ContentsBbsServiceImpl implements ContentsBbsService {
map.put("msgDesc", "사용자 정보가 올바르지 않습니다.");
}
}
*/
if(true == check){
// 권한 조회
HashMap<String, Object> authCheckParamMap = new HashMap<String, Object>();