diff --git a/src/main/java/kr/xit/fims/framework/biz/cmm/XitEntrprsMberVO.java b/src/main/java/kr/xit/fims/framework/biz/cmm/XitEntrprsMberVO.java deleted file mode 100644 index 7ffbdc99..00000000 --- a/src/main/java/kr/xit/fims/framework/biz/cmm/XitEntrprsMberVO.java +++ /dev/null @@ -1,53 +0,0 @@ -package kr.xit.fims.framework.biz.cmm; - -import kr.xit.fims.framework.core.BaseVO; -import lombok.*; - -/** - * - * @업무그룹명: 기업회원VO - * @설명: - * @최초작성일: 2020. 3. 21. 오전 10:15:53 - * @최초작성자: 박민규 - * @author (주)엑스아이티 개발팀 - * @since 2002. 2. 2. - * @version 1.0 Copyright(c) XIT All rights reserved. - */ -@Getter -@Setter -@AllArgsConstructor -@NoArgsConstructor -@EqualsAndHashCode(callSuper = false) -@ToString -public class XitEntrprsMberVO extends BaseVO { - - /** - * serialVersionUID - */ - private static final long serialVersionUID = -279550027005549283L; - - protected String entrprsMberId; //기업 회원 id - protected String entrprsSeCode; //기업 구분 코드 - protected String bizrno; //사업자등록번호 - protected String jurirno; //법인등록번호 - protected String cmpnyNm; //회사 명 - protected String cxfc; //대표이사 - protected String zip; //우편번호 - protected String adres; //주소 - protected String entrprsMiddleTelno; //기업 중간 전화번호 - protected String fxnum; //팩스번호 - protected String induty_code; //업종 코드 - protected String applcntNm; //신청인 명 - protected String applcntIhidnum; //신청인 주민등록번호 - protected String regDt; //가입 일 - protected String entrprsMberSttus; //기업 회원 상태 - protected String entrprsMberPassword; //기업 회원 비밀번호 - protected String entrprsMberPasswordHint; //기업 회원 비밀번호 힌트 - protected String entrprsMberPasswordCnsr; //기업 회원 비밀번호 정답 - protected String groupId; //그룹 id - protected String detailAdres; //상세 주소 - protected String entrprsEndTelno; //기업 끝 전화번호 - protected String area_no; //지역 번호 - protected String applcntEmailAdres; //신청자 이메일 주소 - protected String esntlId; //고유 id -} diff --git a/src/main/java/kr/xit/fims/framework/biz/cmm/XitGnrlMberVO.java b/src/main/java/kr/xit/fims/framework/biz/cmm/XitGnrlMberVO.java deleted file mode 100644 index 9d8943e3..00000000 --- a/src/main/java/kr/xit/fims/framework/biz/cmm/XitGnrlMberVO.java +++ /dev/null @@ -1,50 +0,0 @@ -package kr.xit.fims.framework.biz.cmm; - -import kr.xit.fims.framework.core.BaseVO; -import lombok.*; - -/** - * - * @업무그룹명: 일반회원VO - * @설명: - * @최초작성일: 2020. 3. 21. 오전 10:23:42 - * @최초작성자: 박민규 - * @author (주)엑스아이티 개발팀 - * @since 2002. 2. 2. - * @version 1.0 Copyright(c) XIT All rights reserved. - */ -@Getter -@Setter -@AllArgsConstructor -@NoArgsConstructor -@EqualsAndHashCode(callSuper = false) -@ToString -public class XitGnrlMberVO extends BaseVO { - - /** - * serialVersionUID - */ - private static final long serialVersionUID = -8432104288694124828L; - - protected String mberId; //회원 id - protected String password; //비밀번호 - protected String passwordHint; //비밀번호 힌트 - protected String passwordCnsr; //비밀번호 정답 - protected String ihidnum; //주민등록번호 - protected String mberNm; //회원 명 - protected String zip; //우편번호 - protected String adres; //주소 - protected String areaNo; //지역 번호 - protected String mberSttus; //회원 상태 - protected String detailAdres; //상세 주소 - protected String endTelno; //끝 전화번호 - protected String mbtlnum; //이동전화번호 - protected String groupId; //그룹 id - protected String mberFxnum; //회원 팩스번호 - protected String mberEmailAdres; //회원 이메일 주소 - protected String middleTelno; //중간 전화번호 - protected String regDt; //가입 일자 - - protected String sexdstnCode; //성별 코드 - protected String esntlId; //고유 id -} diff --git a/src/main/java/kr/xit/fims/framework/biz/cmm/XitLoginVO.java b/src/main/java/kr/xit/fims/framework/biz/cmm/XitLoginVO.java index 0f778172..29b8176e 100644 --- a/src/main/java/kr/xit/fims/framework/biz/cmm/XitLoginVO.java +++ b/src/main/java/kr/xit/fims/framework/biz/cmm/XitLoginVO.java @@ -83,45 +83,7 @@ public class XitLoginVO implements Serializable{ */ if( obj == null) { - } else if(obj instanceof XitGnrlMberVO) { - //일반회원 - XitGnrlMberVO vo = (XitGnrlMberVO)obj; - this.id = vo.getMberId(); - this.name = vo.getMberNm(); - this.password = vo.getPassword(); - this.ihidNum = vo.getIhidnum(); - this.email = vo.getMberEmailAdres(); - this.userSe = USER_SE.GNR.name(); - this.orgnztId = "-"; - this.orgnztNm = "-"; - this.groupId = vo.getGroupId(); - this.pstinstCode = "-"; - this.uniqId = vo.getEsntlId(); - this.jobDataAuthor = "-"; - this.userManageAuthor = "-"; - this.elctrnsanctnUseYn = "-"; - this.jobConfmAuthorYn = "-"; - - }else if(obj instanceof XitEntrprsMberVO) { - //기업회원 - XitEntrprsMberVO vo = (XitEntrprsMberVO)obj; - this.id = vo.getEntrprsMberId(); - this.name = vo.getCmpnyNm(); - this.password = vo.getEntrprsMberPassword(); - this.ihidNum = vo.getBizrno(); - this.email = vo.getApplcntEmailAdres(); - this.userSe = USER_SE.ENT.name(); - this.orgnztId = "-"; - this.orgnztNm = "-"; - this.groupId = vo.getGroupId(); - this.pstinstCode = "-"; - this.uniqId = vo.getEsntlId(); - this.jobDataAuthor = "-"; - this.userManageAuthor = "-"; - this.elctrnsanctnUseYn = "-"; - this.jobConfmAuthorYn = "-"; - - }else if(obj instanceof XitUserInfoVO) { + } else if(obj instanceof XitUserInfoVO) { //업무사용자 XitUserInfoVO vo = (XitUserInfoVO)obj; this.id = vo.getUserId(); diff --git a/src/main/java/kr/xit/fims/framework/biz/cmm/web/XitFrameAnonymousController.java b/src/main/java/kr/xit/fims/framework/biz/cmm/web/XitFrameAnonymousController.java index ddce99cf..a2b810d7 100644 --- a/src/main/java/kr/xit/fims/framework/biz/cmm/web/XitFrameAnonymousController.java +++ b/src/main/java/kr/xit/fims/framework/biz/cmm/web/XitFrameAnonymousController.java @@ -3,13 +3,9 @@ package kr.xit.fims.framework.biz.cmm.web; import cokr.xit.foundation.web.AbstractController; import kr.xit.fims.framework.biz.cmm.service.XitFrameCodeService; import kr.xit.fims.framework.biz.cmm.service.XitFrameUnitService; -import kr.xit.fims.framework.biz.mng.user.XitEntUserRegMngVO; -import kr.xit.fims.framework.biz.mng.user.XitGnrUserRegMngVO; import kr.xit.fims.framework.biz.mng.user.XitUserRegMngSearchVO; import kr.xit.fims.framework.biz.mng.user.XitUserRegMngVO; import kr.xit.fims.framework.biz.mng.user.service.UserMgtService; -import kr.xit.fims.framework.biz.mng.user.service.XitEntUserRegMngService; -import kr.xit.fims.framework.biz.mng.user.service.XitGnrUserRegMngService; import kr.xit.fims.framework.core.constants.FrameworkConstants; import kr.xit.fims.framework.core.constants.FrameworkConstants.TILES_TYPE; import kr.xit.fims.framework.core.constants.FrameworkConstants.USER_SE; @@ -49,10 +45,7 @@ public class XitFrameAnonymousController extends AbstractController { @Resource private XitFrameCodeService xitFrameCodeService; - @Resource - private XitGnrUserRegMngService xitGnrUserRegMngService; - @Resource - private XitEntUserRegMngService xitEntUserRegMngService; + @Resource private UserMgtService xitUserRegMngService; @Resource @@ -119,8 +112,6 @@ public class XitFrameAnonymousController extends AbstractController { @RequestMapping(name = "", value = "login/UserReg_{cmd}", method={RequestMethod.GET, RequestMethod.POST}) public String UserReg_page(@PathVariable String cmd , @ModelAttribute("userSearchVO") XitUserRegMngSearchVO searchVO - , @ModelAttribute("mberManageVO") XitGnrUserRegMngVO mberManageVO - , @ModelAttribute("entrprsManageVO") XitEntUserRegMngVO entrprsManageVO , @ModelAttribute("userManageVO") XitUserRegMngVO userManageVO , @RequestParam(value="userTyForPassword", required=false, defaultValue="") String userTyForPassword , ModelMap model) { @@ -169,8 +160,6 @@ public class XitFrameAnonymousController extends AbstractController { @RequestMapping(name = "", value = "login/UserReg_Forms_{cmd}", method={RequestMethod.GET, RequestMethod.POST}) public String UserReg_Forms_page(@PathVariable String cmd , @ModelAttribute("userSearchVO") XitUserRegMngSearchVO searchVO - , @ModelAttribute("mberManageVO") XitGnrUserRegMngVO mberManageVO - , @ModelAttribute("entrprsManageVO") XitEntUserRegMngVO entrprsManageVO , @ModelAttribute("userManageVO") XitUserRegMngVO userManageVO , @RequestParam(value="userTyForPassword", required=false, defaultValue="") String userTyForPassword , ModelMap model) { @@ -179,29 +168,11 @@ public class XitFrameAnonymousController extends AbstractController { switch (cmd) { case "GNR": //일반회원가입 페이지 - page = "GnrUserForm"; - - /*================ - * 코드목록 조회 - ================*/ - model.addAttribute("passwordHint_result" , xitFrameCodeService.findCmmnDetailCodes("XIT022")); //패스워트힌트코드 목록 - model.addAttribute("sexdstnCode_result" , xitFrameCodeService.findCmmnDetailCodes("XIT014")); //성별구분코드 목록 - model.addAttribute("groupId_result" , xitFrameCodeService.findGroupCodes("XIT_ORGNZT_INFO")); //그룹정보코드 목록 - model.addAttribute("mberSttus_result" , xitFrameCodeService.findCmmnDetailCodes("XIT013")); //사용자상태코드 목록 + break; case "ENT": //기업회원가입 페이지 - page = "EntUserForm"; - - /*================ - * 코드목록 조회 - ================*/ - model.addAttribute("passwordHint_result" , xitFrameCodeService.findCmmnDetailCodes("XIT022")); //패스워트힌트코드 목록 - model.addAttribute("sexdstnCode_result" , xitFrameCodeService.findCmmnDetailCodes("XIT014")); //성별구분코드 목록 - model.addAttribute("groupId_result" , xitFrameCodeService.findGroupCodes("XIT_ORGNZT_INFO")); //그룹정보코드 목록 - model.addAttribute("entrprsMberSttus_result" , xitFrameCodeService.findCmmnDetailCodes("XIT013")); //사용자상태코드 목록 - model.addAttribute("entrprsSeCode_result" , xitFrameCodeService.findCmmnDetailCodes("XIT026")); //기업구분코드 목록 - model.addAttribute("indutyCode_result" , xitFrameCodeService.findCmmnDetailCodes("XIT027")); //업종코드 목록 + break; case "USR": //업무사용자 회원가입 페이지 @@ -238,8 +209,6 @@ public class XitFrameAnonymousController extends AbstractController { */ @RequestMapping(name = "", value = "login/UserReg_insert_proc", method=RequestMethod.POST) public void UserReg_insert_proc(@RequestParam(value="userSe", required=true) String userSe - ,@ModelAttribute("mberManageVO") XitGnrUserRegMngVO mberManageVO - ,@ModelAttribute("entrprsManageVO") XitEntUserRegMngVO entrprsManageVO ,@ModelAttribute("userManageVO") XitUserRegMngVO userManageVO ,BindingResult bindingResult ,Model model @@ -270,66 +239,11 @@ public class XitFrameAnonymousController extends AbstractController { ValidateBreakPoint: switch (constUserSe) { case GNR: //일반회원 - sLocationUrl = "forward:/_anonymous_/login/UserReg_Forms_GNR.do"; - - /** - * 유효성 확인 - */ - //2020.11.24. 주석처리 - beanValidator.validate(mberManageVO, bindingResult); -// beanValidator.validate("mberManageVO", mberManageVO, bindingResult); - if (bindingResult.hasErrors()) { - message = xitMessageSource.getMessage("fail.common.insert"); - break ValidateBreakPoint; - } - - /** - * 필수값 설정 - */ - mberManageVO.setMberSttus(this.getUserSttusCode(constUserSe)); //사용자상태코드(A: 신청, D: 삭제, P:승인) - - /** - * 처리 - */ - try { - xitGnrUserRegMngService.addProc(mberManageVO); - message = xitMessageSource.getMessage("success.common.insert"); - } catch (RuntimeException e) { - message = e.getMessage(); - } catch (Exception e) { - message = xitMessageSource.getMessage("fail.common.insert"); - } + break; case ENT: //기업회원 - sLocationUrl = "forward:/_anonymous_/login/UserReg_Forms_ENT.do"; - - /** - * 유효성 확인 - */ - //2020.11.24. 주석처리 - beanValidator.validate(mberManageVO, bindingResult); -// beanValidator.validate("entrprsManageVO", entrprsManageVO, bindingResult); - if (bindingResult.hasErrors()) { - message = xitMessageSource.getMessage("fail.common.insert"); - } - - /** - * 필수값 설정 - */ - entrprsManageVO.setEntrprsMberSttus(this.getUserSttusCode(constUserSe)); //사용자상태코드(A: 신청, D: 삭제, P:승인) - - /** - * 처리 - */ - try { - xitEntUserRegMngService.addProc(entrprsManageVO); - message = xitMessageSource.getMessage("success.common.insert"); - } catch (RuntimeException e) { - message = e.getMessage(); - } catch (Exception e) { - message = xitMessageSource.getMessage("fail.common.insert"); - } + break; case USR: //업무사용자 @@ -339,7 +253,7 @@ public class XitFrameAnonymousController extends AbstractController { * 유효성 확인 */ //2020.11.24. 주석처리 - beanValidator.validate(mberManageVO, bindingResult); + beanValidator.validate(userManageVO, bindingResult); // beanValidator.validate("userManageVO", userManageVO, bindingResult); if (bindingResult.hasErrors()) { message = xitMessageSource.getMessage("fail.common.insert"); @@ -416,12 +330,10 @@ public class XitFrameAnonymousController extends AbstractController { if(!XitCmmnUtil.isEmpty(userSe)) { switch (userSe) { case GNR: //일반회원 - if(XitCmmnUtil.notEmpty(MEMBER_STATUS_GNR)) - sttusCode = MEMBER_STATUS_GNR; + break; case ENT: //기업회원 - if(XitCmmnUtil.notEmpty(MEMBER_STATUS_ENT)) - sttusCode = MEMBER_STATUS_ENT; + break; case USR: //업무사용자 if(XitCmmnUtil.notEmpty(MEMBER_STATUS_USR)) diff --git a/src/main/java/kr/xit/fims/framework/biz/mng/user/XitEntUserRegMngSearchVO.java b/src/main/java/kr/xit/fims/framework/biz/mng/user/XitEntUserRegMngSearchVO.java deleted file mode 100644 index 74ce1184..00000000 --- a/src/main/java/kr/xit/fims/framework/biz/mng/user/XitEntUserRegMngSearchVO.java +++ /dev/null @@ -1,22 +0,0 @@ -package kr.xit.fims.framework.biz.mng.user; - -import kr.xit.fims.framework.core.XitBaseSearchVO; - -/** - * - * @업무그룹명: 기업사용자등록관리SearchVO - * @설명: - * @최초작성일: 2020. 3. 26. 오후 1:33:08 - * @최초작성자: 박민규 - * @author (주)엑스아이티 개발팀 - * @since 2002. 2. 2. - * @version 1.0 Copyright(c) XIT All rights reserved. - */ -public class XitEntUserRegMngSearchVO extends XitBaseSearchVO{ - - /** - * serialVersionUID - */ - private static final long serialVersionUID = 1L; - -} diff --git a/src/main/java/kr/xit/fims/framework/biz/mng/user/XitEntUserRegMngVO.java b/src/main/java/kr/xit/fims/framework/biz/mng/user/XitEntUserRegMngVO.java deleted file mode 100644 index 9a148a78..00000000 --- a/src/main/java/kr/xit/fims/framework/biz/mng/user/XitEntUserRegMngVO.java +++ /dev/null @@ -1,562 +0,0 @@ -package kr.xit.fims.framework.biz.mng.user; - -import kr.xit.fims.framework.core.BaseVO; - -/** - * - * @업무그룹명: 기업사용자등록관리VO - * @설명: - * @최초작성일: 2020. 3. 26. 오후 1:32:49 - * @최초작성자: 박민규 - * @author (주)엑스아이티 개발팀 - * @since 2002. 2. 2. - * @version 1.0 Copyright(c) XIT All rights reserved. - */ -public class XitEntUserRegMngVO extends BaseVO { - /** - * serialVersionUID - */ - private static final long serialVersionUID = 1L; - - /** 이전비밀번호 - 비밀번호 변경시 사용*/ - private String oldPassword = ""; - - /** - * 사용자고유아이디 - */ - private String uniqId=""; - /** - * 사용자 유형 - */ - private String userTy; - /** - * 주소 - */ - private String adres; - /** - * 상세주소 - */ - private String detailAdres; - /** - * 신청자 주민등록번호 - */ - private String applcntIhidnum; - /** - * 신청자 명 - */ - private String applcntNm; - /** - * 사업자번호 - */ - private String bizrno; - /** - * 회사명 - */ - private String cmpnyNm; - /** - * 대표이사 - */ - private String cxfc; - /** - * 기업 회원 ID - */ - private String entrprsmberId; - /** - * 기업 회원 비밀번호 - */ - private String entrprsMberPassword; - /** - * 기업 회원 비밀번호 정답 - */ - private String entrprsMberPasswordCnsr; - /** - * 기업 회원 비밀번호 힌트 - */ - private String entrprsMberPasswordHint; - /** - * 기업 회원 상태 - */ - private String entrprsMberSttus; - /** - * 기업구분코드 - */ - private String entrprsSeCode; - /** - * 팩스번호 - */ - private String fxnum; - /** - * 그룹 ID - */ - private String groupId; - /** - * 업종코드 - */ - private String indutyCode; - /** - * 법인등록번호 - */ - private String jurirno; - /** - * 지역번호 - */ - private String areaNo; - /** - * 회사끝전화번호 - */ - private String entrprsEndTelno; - /** - * 회사중간전화번호 - */ - private String entrprsMiddleTelno; - /** - * 가입 일자 - */ - private String regDt; - /** - * 우편번호 - */ - private String zip; - /** - * 신청자 이메일주소 - */ - private String applcntEmailAdres; - /** - * 회원상태 코드 명 - */ - private String userSttusCode; - - /** - * 로그인인증제한여부 - */ - private String lockAt; - public String getLockAt() {return lockAt;} - public void setLockAt(String lockAt) {this.lockAt = lockAt;} - - /*======================== - * 목록화면 select 항목 - ========================*/ - private String userId; - private String userNm; - private String middleTelno; - private String endTelno; - private String sttus; - private String emailAdres; - private String mbtlnum; - - - - /** - * oldPassword attribute 값을 리턴한다. - * @return String - */ - public String getOldPassword() { - return oldPassword; - } - /** - * oldPassword attribute 값을 설정한다. - * @param oldPassword String - */ - public void setOldPassword(String oldPassword) { - this.oldPassword = oldPassword; - } - /** - * uniqId attribute 값을 리턴한다. - * @return String - */ - public String getUniqId() { - return uniqId; - } - /** - * uniqId attribute 값을 설정한다. - * @param uniqId String - */ - public void setUniqId(String uniqId) { - this.uniqId = uniqId; - } - /** - * userTy attribute 값을 리턴한다. - * @return String - */ - public String getUserTy() { - return userTy; - } - /** - * userTy attribute 값을 설정한다. - * @param userTy String - */ - public void setUserTy(String userTy) { - this.userTy = userTy; - } - /** - * adres attribute 값을 리턴한다. - * @return String - */ - public String getAdres() { - return adres; - } - /** - * adres attribute 값을 설정한다. - * @param adres String - */ - public void setAdres(String adres) { - this.adres = adres; - } - /** - * detailAdres attribute 값을 리턴한다. - * @return String - */ - public String getDetailAdres() { - return detailAdres; - } - /** - * detailAdres attribute 값을 설정한다. - * @param detailAdres String - */ - public void setDetailAdres(String detailAdres) { - this.detailAdres = detailAdres; - } - /** - * applcntIhidnum attribute 값을 리턴한다. - * @return String - */ - public String getApplcntIhidnum() { - return applcntIhidnum; - } - /** - * applcntIhidnum attribute 값을 설정한다. - * @param applcntIhidnum String - */ - public void setApplcntIhidnum(String applcntIhidnum) { - this.applcntIhidnum = applcntIhidnum; - } - /** - * applcntNm attribute 값을 리턴한다. - * @return String - */ - public String getApplcntNm() { - return applcntNm; - } - /** - * applcntNm attribute 값을 설정한다. - * @param applcntNm String - */ - public void setApplcntNm(String applcntNm) { - this.applcntNm = applcntNm; - } - /** - * bizrno attribute 값을 리턴한다. - * @return String - */ - public String getBizrno() { - return bizrno; - } - /** - * bizrno attribute 값을 설정한다. - * @param bizrno String - */ - public void setBizrno(String bizrno) { - this.bizrno = bizrno; - } - /** - * cmpnyNm attribute 값을 리턴한다. - * @return String - */ - public String getCmpnyNm() { - return cmpnyNm; - } - /** - * cmpnyNm attribute 값을 설정한다. - * @param cmpnyNm String - */ - public void setCmpnyNm(String cmpnyNm) { - this.cmpnyNm = cmpnyNm; - } - /** - * cxfc attribute 값을 리턴한다. - * @return String - */ - public String getCxfc() { - return cxfc; - } - /** - * cxfc attribute 값을 설정한다. - * @param cxfc String - */ - public void setCxfc(String cxfc) { - this.cxfc = cxfc; - } - /** - * entrprsmberId attribute 값을 리턴한다. - * @return String - */ - public String getEntrprsmberId() { - return entrprsmberId; - } - /** - * entrprsmberId attribute 값을 설정한다. - * @param entrprsmberId String - */ - public void setEntrprsmberId(String entrprsmberId) { - this.entrprsmberId = entrprsmberId; - } - /** - * entrprsMberPassword attribute 값을 리턴한다. - * @return String - */ - public String getEntrprsMberPassword() { - return entrprsMberPassword; - } - /** - * entrprsMberPassword attribute 값을 설정한다. - * @param entrprsMberPassword String - */ - public void setEntrprsMberPassword(String entrprsMberPassword) { - this.entrprsMberPassword = entrprsMberPassword; - } - /** - * entrprsMberPasswordCnsr attribute 값을 리턴한다. - * @return String - */ - public String getEntrprsMberPasswordCnsr() { - return entrprsMberPasswordCnsr; - } - /** - * entrprsMberPasswordCnsr attribute 값을 설정한다. - * @param entrprsMberPasswordCnsr String - */ - public void setEntrprsMberPasswordCnsr(String entrprsMberPasswordCnsr) { - this.entrprsMberPasswordCnsr = entrprsMberPasswordCnsr; - } - /** - * entrprsMberPasswordHint attribute 값을 리턴한다. - * @return String - */ - public String getEntrprsMberPasswordHint() { - return entrprsMberPasswordHint; - } - /** - * entrprsMberPasswordHint attribute 값을 설정한다. - * @param entrprsMberPasswordHint String - */ - public void setEntrprsMberPasswordHint(String entrprsMberPasswordHint) { - this.entrprsMberPasswordHint = entrprsMberPasswordHint; - } - /** - * entrprsMberSttus attribute 값을 리턴한다. - * @return String - */ - public String getEntrprsMberSttus() { - return entrprsMberSttus; - } - /** - * entrprsMberSttus attribute 값을 설정한다. - * @param entrprsMberSttus String - */ - public void setEntrprsMberSttus(String entrprsMberSttus) { - this.entrprsMberSttus = entrprsMberSttus; - } - /** - * entrprsSeCode attribute 값을 리턴한다. - * @return String - */ - public String getEntrprsSeCode() { - return entrprsSeCode; - } - /** - * entrprsSeCode attribute 값을 설정한다. - * @param entrprsSeCode String - */ - public void setEntrprsSeCode(String entrprsSeCode) { - this.entrprsSeCode = entrprsSeCode; - } - /** - * fxnum attribute 값을 리턴한다. - * @return String - */ - public String getFxnum() { - return fxnum; - } - /** - * fxnum attribute 값을 설정한다. - * @param fxnum String - */ - public void setFxnum(String fxnum) { - this.fxnum = fxnum; - } - /** - * groupId attribute 값을 리턴한다. - * @return String - */ - public String getGroupId() { - return groupId; - } - /** - * groupId attribute 값을 설정한다. - * @param groupId String - */ - public void setGroupId(String groupId) { - this.groupId = groupId; - } - /** - * indutyCode attribute 값을 리턴한다. - * @return String - */ - public String getIndutyCode() { - return indutyCode; - } - /** - * indutyCode attribute 값을 설정한다. - * @param indutyCode String - */ - public void setIndutyCode(String indutyCode) { - this.indutyCode = indutyCode; - } - /** - * jurirno attribute 값을 리턴한다. - * @return String - */ - public String getJurirno() { - return jurirno; - } - /** - * jurirno attribute 값을 설정한다. - * @param jurirno String - */ - public void setJurirno(String jurirno) { - this.jurirno = jurirno; - } - /** - * areaNo attribute 값을 리턴한다. - * @return String - */ - public String getAreaNo() { - return areaNo; - } - /** - * areaNo attribute 값을 설정한다. - * @param areaNo String - */ - public void setAreaNo(String areaNo) { - this.areaNo = areaNo; - } - /** - * entrprsEndTelno attribute 값을 리턴한다. - * @return String - */ - public String getEntrprsEndTelno() { - return entrprsEndTelno; - } - /** - * entrprsEndTelno attribute 값을 설정한다. - * @param entrprsEndTelno String - */ - public void setEntrprsEndTelno(String entrprsEndTelno) { - this.entrprsEndTelno = entrprsEndTelno; - } - /** - * entrprsMiddleTelno attribute 값을 리턴한다. - * @return String - */ - public String getEntrprsMiddleTelno() { - return entrprsMiddleTelno; - } - /** - * entrprsMiddleTelno attribute 값을 설정한다. - * @param entrprsMiddleTelno String - */ - public void setEntrprsMiddleTelno(String entrprsMiddleTelno) { - this.entrprsMiddleTelno = entrprsMiddleTelno; - } - /** - * regDt attribute 값을 리턴한다. - * @return String - */ - public String getRegDt() { - return regDt; - } - /** - * regDt attribute 값을 설정한다. - * @param regDt String - */ - public void setRegDt(String regDt) { - this.regDt = regDt; - } - /** - * zip attribute 값을 리턴한다. - * @return String - */ - public String getZip() { - return zip; - } - /** - * zip attribute 값을 설정한다. - * @param zip String - */ - public void setZip(String zip) { - this.zip = zip; - } - /** - * applcntEmailAdres attribute 값을 리턴한다. - * @return String - */ - public String getApplcntEmailAdres() { - return applcntEmailAdres; - } - /** - * applcntEmailAdres attribute 값을 설정한다. - * @param applcntEmailAdres String - */ - public void setApplcntEmailAdres(String applcntEmailAdres) { - this.applcntEmailAdres = applcntEmailAdres; - } - public String getUserSttusCode() { - return userSttusCode; - } - public void setUserSttusCode(String userSttusCode) { - this.userSttusCode = userSttusCode; - } - public String getUserId() { - return userId; - } - public void setUserId(String userId) { - this.userId = userId; - } - public String getUserNm() { - return userNm; - } - public void setUserNm(String userNm) { - this.userNm = userNm; - } - public String getMiddleTelno() { - return middleTelno; - } - public void setMiddleTelno(String middleTelno) { - this.middleTelno = middleTelno; - } - public String getEndTelno() { - return endTelno; - } - public void setEndTelno(String endTelno) { - this.endTelno = endTelno; - } - public String getSttus() { - return sttus; - } - public void setSttus(String sttus) { - this.sttus = sttus; - } - public String getEmailAdres() { - return emailAdres; - } - public void setEmailAdres(String emailAdres) { - this.emailAdres = emailAdres; - } - public String getMoblphonNo() { - return mbtlnum; - } - public void setMoblphonNo(String mbtlnum) { - this.mbtlnum = mbtlnum; - } - -} diff --git a/src/main/java/kr/xit/fims/framework/biz/mng/user/XitGnrUserRegMngSearchVO.java b/src/main/java/kr/xit/fims/framework/biz/mng/user/XitGnrUserRegMngSearchVO.java deleted file mode 100644 index b3fd6450..00000000 --- a/src/main/java/kr/xit/fims/framework/biz/mng/user/XitGnrUserRegMngSearchVO.java +++ /dev/null @@ -1,22 +0,0 @@ -package kr.xit.fims.framework.biz.mng.user; - -import kr.xit.fims.framework.core.XitBaseSearchVO; - -/** - * - * @업무그룹명: 일반사용자등록관리SearchVO - * @설명: - * @최초작성일: 2020. 3. 26. 오후 1:33:08 - * @최초작성자: 박민규 - * @author (주)엑스아이티 개발팀 - * @since 2002. 2. 2. - * @version 1.0 Copyright(c) XIT All rights reserved. - */ -public class XitGnrUserRegMngSearchVO extends XitBaseSearchVO{ - - /** - * serialVersionUID - */ - private static final long serialVersionUID = 1L; - -} diff --git a/src/main/java/kr/xit/fims/framework/biz/mng/user/XitGnrUserRegMngVO.java b/src/main/java/kr/xit/fims/framework/biz/mng/user/XitGnrUserRegMngVO.java deleted file mode 100644 index b8a43fed..00000000 --- a/src/main/java/kr/xit/fims/framework/biz/mng/user/XitGnrUserRegMngVO.java +++ /dev/null @@ -1,471 +0,0 @@ -package kr.xit.fims.framework.biz.mng.user; - -import kr.xit.fims.framework.core.BaseVO; - -/** - * - * @업무그룹명: 일반사용자등록관리VO - * @설명: - * @최초작성일: 2020. 3. 26. 오후 1:32:49 - * @최초작성자: 박민규 - * @author (주)엑스아이티 개발팀 - * @since 2002. 2. 2. - * @version 1.0 Copyright(c) XIT All rights reserved. - */ -public class XitGnrUserRegMngVO extends BaseVO { - /** - * serialVersionUID - */ - private static final long serialVersionUID = 1L; - - /** 이전비밀번호 - 비밀번호 변경시 사용*/ - private String oldPassword = ""; - - /** - * 사용자고유아이디 - */ - private String uniqId=""; - /** - * 사용자 유형 - */ - private String userTy; - /** - * 주소 - */ - private String adres; - /** - * 상세주소 - */ - private String detailAdres; - /** - * 끝전화번호 - */ - private String endTelno; - /** - * 팩스번호 - */ - private String mberFxnum; - /** - * 그룹 ID - */ - private String groupId; - /** - * 주민등록번호 - */ - private String ihidnum; - /** - * 성별코드 - */ - private String sexdstnCode; - /** - * 회원 ID - */ - private String mberId; - /** - * 회원명 - */ - private String mberNm; - /** - * 회원상태 - */ - private String mberSttus; - /** - * 지역번호 - */ - private String areaNo; - /** - * 중간전화번호 - */ - private String middleTelno; - /** - * 핸드폰번호 - */ - private String mbtlnum; - /** - * 비밀번호 - */ - private String password; - /** - * 비밀번호 정답 - */ - private String passwordCnsr; - /** - * 비밀번호 힌트 - */ - private String passwordHint; - /** - * 가입 일자 - */ - private String regDt; - /** - * 우편번호 - */ - private String zip; - /** - * 이메일주소 - */ - private String mberEmailAdres; - - /** - * 회원상태 코드 명 - */ - private String userSttusCode; - - - /** - * 로그인인증제한여부 - */ - private String lockAt; - public String getLockAt() {return lockAt;} - public void setLockAt(String lockAt) {this.lockAt = lockAt;} - - /*======================== - * 목록화면 select 항목 - ========================*/ - private String userId; - private String userNm; -// private String middleTelno; -// private String endTelno; - private String sttus; - private String emailAdres; - - /** - * oldPassword attribute 값을 리턴한다. - * @return String - */ - public String getOldPassword() { - return oldPassword; - } - /** - * oldPassword attribute 값을 설정한다. - * @param oldPassword String - */ - public void setOldPassword(String oldPassword) { - this.oldPassword = oldPassword; - } - /** - * uniqId attribute 값을 리턴한다. - * @return String - */ - public String getUniqId() { - return uniqId; - } - /** - * uniqId attribute 값을 설정한다. - * @param uniqId String - */ - public void setUniqId(String uniqId) { - this.uniqId = uniqId; - } - /** - * userTy attribute 값을 리턴한다. - * @return String - */ - public String getUserTy() { - return userTy; - } - /** - * userTy attribute 값을 설정한다. - * @param userTy String - */ - public void setUserTy(String userTy) { - this.userTy = userTy; - } - /** - * adres attribute 값을 리턴한다. - * @return String - */ - public String getAdres() { - return adres; - } - /** - * adres attribute 값을 설정한다. - * @param adres String - */ - public void setAdres(String adres) { - this.adres = adres; - } - /** - * detailAdres attribute 값을 리턴한다. - * @return String - */ - public String getDetailAdres() { - return detailAdres; - } - /** - * detailAdres attribute 값을 설정한다. - * @param detailAdres String - */ - public void setDetailAdres(String detailAdres) { - this.detailAdres = detailAdres; - } - /** - * endTelno attribute 값을 리턴한다. - * @return String - */ - public String getEndTelno() { - return endTelno; - } - /** - * endTelno attribute 값을 설정한다. - * @param endTelno String - */ - public void setEndTelno(String endTelno) { - this.endTelno = endTelno; - } - /** - * mberFxnum attribute 값을 리턴한다. - * @return String - */ - public String getMberFxnum() { - return mberFxnum; - } - /** - * mberFxnum attribute 값을 설정한다. - * @param mberFxnum String - */ - public void setMberFxnum(String mberFxnum) { - this.mberFxnum = mberFxnum; - } - /** - * groupId attribute 값을 리턴한다. - * @return String - */ - public String getGroupId() { - return groupId; - } - /** - * groupId attribute 값을 설정한다. - * @param groupId String - */ - public void setGroupId(String groupId) { - this.groupId = groupId; - } - /** - * ihidnum attribute 값을 리턴한다. - * @return String - */ - public String getIhidnum() { - return ihidnum; - } - /** - * ihidnum attribute 값을 설정한다. - * @param ihidnum String - */ - public void setIhidnum(String ihidnum) { - this.ihidnum = ihidnum; - } - /** - * sexdstnCode attribute 값을 리턴한다. - * @return String - */ - public String getSexdstnCode() { - return sexdstnCode; - } - /** - * sexdstnCode attribute 값을 설정한다. - * @param sexdstnCode String - */ - public void setSexdstnCode(String sexdstnCode) { - this.sexdstnCode = sexdstnCode; - } - /** - * mberId attribute 값을 리턴한다. - * @return String - */ - public String getMberId() { - return mberId; - } - /** - * mberId attribute 값을 설정한다. - * @param mberId String - */ - public void setMberId(String mberId) { - this.mberId = mberId; - } - /** - * mberNm attribute 값을 리턴한다. - * @return String - */ - public String getMberNm() { - return mberNm; - } - /** - * mberNm attribute 값을 설정한다. - * @param mberNm String - */ - public void setMberNm(String mberNm) { - this.mberNm = mberNm; - } - /** - * mberSttus attribute 값을 리턴한다. - * @return String - */ - public String getMberSttus() { - return mberSttus; - } - /** - * mberSttus attribute 값을 설정한다. - * @param mberSttus String - */ - public void setMberSttus(String mberSttus) { - this.mberSttus = mberSttus; - } - /** - * areaNo attribute 값을 리턴한다. - * @return String - */ - public String getAreaNo() { - return areaNo; - } - /** - * areaNo attribute 값을 설정한다. - * @param areaNo String - */ - public void setAreaNo(String areaNo) { - this.areaNo = areaNo; - } - /** - * middleTelno attribute 값을 리턴한다. - * @return String - */ - public String getMiddleTelno() { - return middleTelno; - } - /** - * middleTelno attribute 값을 설정한다. - * @param middleTelno String - */ - public void setMiddleTelno(String middleTelno) { - this.middleTelno = middleTelno; - } - /** - * mbtlnum attribute 값을 리턴한다. - * @return String - */ - public String getMoblphonNo() { - return mbtlnum; - } - /** - * mbtlnum attribute 값을 설정한다. - * @param mbtlnum String - */ - public void setMoblphonNo(String mbtlnum) { - this.mbtlnum = mbtlnum; - } - /** - * password attribute 값을 리턴한다. - * @return String - */ - public String getPassword() { - return password; - } - /** - * password attribute 값을 설정한다. - * @param password String - */ - public void setPassword(String password) { - this.password = password; - } - /** - * passwordCnsr attribute 값을 리턴한다. - * @return String - */ - public String getPasswordCnsr() { - return passwordCnsr; - } - /** - * passwordCnsr attribute 값을 설정한다. - * @param passwordCnsr String - */ - public void setPasswordCnsr(String passwordCnsr) { - this.passwordCnsr = passwordCnsr; - } - /** - * passwordHint attribute 값을 리턴한다. - * @return String - */ - public String getPasswordHint() { - return passwordHint; - } - /** - * passwordHint attribute 값을 설정한다. - * @param passwordHint String - */ - public void setPasswordHint(String passwordHint) { - this.passwordHint = passwordHint; - } - /** - * regDt attribute 값을 리턴한다. - * @return String - */ - public String getRegDt() { - return regDt; - } - /** - * regDt attribute 값을 설정한다. - * @param regDt String - */ - public void setRegDt(String regDt) { - this.regDt = regDt; - } - /** - * zip attribute 값을 리턴한다. - * @return String - */ - public String getZip() { - return zip; - } - /** - * zip attribute 값을 설정한다. - * @param zip String - */ - public void setZip(String zip) { - this.zip = zip; - } - /** - * mberEmailAdres attribute 값을 리턴한다. - * @return String - */ - public String getMberEmailAdres() { - return mberEmailAdres; - } - /** - * mberEmailAdres attribute 값을 설정한다. - * @param mberEmailAdres String - */ - public void setMberEmailAdres(String mberEmailAdres) { - this.mberEmailAdres = mberEmailAdres; - } - public String getUserSttusCode() { - return userSttusCode; - } - public void setUserSttusCode(String userSttusCode) { - this.userSttusCode = userSttusCode; - } - public String getUserId() { - return userId; - } - public void setUserId(String userId) { - this.userId = userId; - } - public String getUserNm() { - return userNm; - } - public void setUserNm(String userNm) { - this.userNm = userNm; - } - public String getSttus() { - return sttus; - } - public void setSttus(String sttus) { - this.sttus = sttus; - } - public String getEmailAdres() { - return emailAdres; - } - public void setEmailAdres(String emailAdres) { - this.emailAdres = emailAdres; - } - -} diff --git a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/cmm/anonymous/forms/EntUserForm.jsp b/src/main/webapp/WEB-INF/jsp/fims/framework/biz/cmm/anonymous/forms/EntUserForm.jsp deleted file mode 100644 index 4f55af35..00000000 --- a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/cmm/anonymous/forms/EntUserForm.jsp +++ /dev/null @@ -1,374 +0,0 @@ -<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> -<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%> -<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> -<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> -<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %> -<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %> - - - - - - - - - - - - - - - diff --git a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/cmm/anonymous/forms/GnrUserForm.jsp b/src/main/webapp/WEB-INF/jsp/fims/framework/biz/cmm/anonymous/forms/GnrUserForm.jsp deleted file mode 100644 index e713bc49..00000000 --- a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/cmm/anonymous/forms/GnrUserForm.jsp +++ /dev/null @@ -1,397 +0,0 @@ -<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> -<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%> -<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%> -<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> -<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%> -<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator"%> - - - - - - - - - - - - - - - diff --git a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitEntUserRegMng_edit.jsp b/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitEntUserRegMng_edit.jsp deleted file mode 100644 index 22b5762c..00000000 --- a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitEntUserRegMng_edit.jsp +++ /dev/null @@ -1,464 +0,0 @@ -<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> -<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%> -<%@ include file="/WEB-INF/jsp/include/fims/taglib.jsp"%> - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitEntUserRegMng_editPwd_popup.jsp b/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitEntUserRegMng_editPwd_popup.jsp deleted file mode 100644 index f91e032d..00000000 --- a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitEntUserRegMng_editPwd_popup.jsp +++ /dev/null @@ -1,123 +0,0 @@ -<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> -<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%> -<%@ include file="/WEB-INF/jsp/include/fims/taglib.jsp"%> - - - -
- - - - - - - - - - - - - - - - -
- - - - diff --git a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitEntUserRegMng_input.jsp b/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitEntUserRegMng_input.jsp deleted file mode 100644 index 1bee27dc..00000000 --- a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitEntUserRegMng_input.jsp +++ /dev/null @@ -1,456 +0,0 @@ -<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> -<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%> -<%@ include file="/WEB-INF/jsp/include/fims/taglib.jsp"%> - - - - - - - - - - - - - - - - diff --git a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitEntUserRegMng_list.jsp b/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitEntUserRegMng_list.jsp deleted file mode 100644 index 720920b9..00000000 --- a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitEntUserRegMng_list.jsp +++ /dev/null @@ -1,398 +0,0 @@ -<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> -<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%> -<%@ include file="/WEB-INF/jsp/include/fims/taglib.jsp"%> - -
- - - - - - - - -
- - 등록 - 삭제 - -
- - - -
-
- -
    -
    -
    - - diff --git a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitEntUserRegMng_view.jsp b/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitEntUserRegMng_view.jsp deleted file mode 100644 index 54995682..00000000 --- a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitEntUserRegMng_view.jsp +++ /dev/null @@ -1,356 +0,0 @@ - -<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> -<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%> -<%@ include file="/WEB-INF/jsp/include/fims/taglib.jsp"%> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitGnrUserRegMng_edit.jsp b/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitGnrUserRegMng_edit.jsp deleted file mode 100644 index bd7476f7..00000000 --- a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitGnrUserRegMng_edit.jsp +++ /dev/null @@ -1,420 +0,0 @@ -<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> -<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%> -<%@ include file="/WEB-INF/jsp/include/fims/taglib.jsp"%> - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitGnrUserRegMng_editPwd_popup.jsp b/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitGnrUserRegMng_editPwd_popup.jsp deleted file mode 100644 index c6e681b3..00000000 --- a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitGnrUserRegMng_editPwd_popup.jsp +++ /dev/null @@ -1,122 +0,0 @@ -<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> -<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%> -<%@ include file="/WEB-INF/jsp/include/fims/taglib.jsp"%> - - - -
    - - - - - - - - - - - - - - - - -
    - - - diff --git a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitGnrUserRegMng_input.jsp b/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitGnrUserRegMng_input.jsp deleted file mode 100644 index 7e979532..00000000 --- a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitGnrUserRegMng_input.jsp +++ /dev/null @@ -1,415 +0,0 @@ -<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> -<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%> -<%@ include file="/WEB-INF/jsp/include/fims/taglib.jsp"%> - - - - - - - - - - - - - - - - diff --git a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitGnrUserRegMng_list.jsp b/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitGnrUserRegMng_list.jsp deleted file mode 100644 index 353e5e86..00000000 --- a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitGnrUserRegMng_list.jsp +++ /dev/null @@ -1,391 +0,0 @@ -<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> -<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%> -<%@ include file="/WEB-INF/jsp/include/fims/taglib.jsp"%> - -
    - - - - - - - - -
    - - 등록 - 삭제 - -
    - - - -
    -
    - -
      -
      -
      - - diff --git a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitGnrUserRegMng_view.jsp b/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitGnrUserRegMng_view.jsp deleted file mode 100644 index 6580a0c0..00000000 --- a/src/main/webapp/WEB-INF/jsp/fims/framework/biz/mng/usr/XitGnrUserRegMng_view.jsp +++ /dev/null @@ -1,309 +0,0 @@ -<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> -<%@ include file="/WEB-INF/jsp/include/taglib.jsp"%> -<%@ include file="/WEB-INF/jsp/include/fims/taglib.jsp"%> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/main/webapp/WEB-INF/templates/thymeleaf/layout/cmm_script.html b/src/main/webapp/WEB-INF/templates/thymeleaf/layout/cmm_script.html index d66b6287..d7c7d846 100644 --- a/src/main/webapp/WEB-INF/templates/thymeleaf/layout/cmm_script.html +++ b/src/main/webapp/WEB-INF/templates/thymeleaf/layout/cmm_script.html @@ -38,33 +38,17 @@