• Y
  • List All
  • Feedback
    • This Project
    • All Projects
Profile Account settings Log out
  • Favorite
  • Project
  • All
Loading...
  • Log in
  • Sign up
chominsoo4245 / mjon_git star
Forked from hylee / mjon_git
  • Project homeH
  • CodeC
  • IssueI
  • Pull requestP
  • Review R
  • MilestoneM
  • BoardB
  • Files
  • Commit
  • Branches
mjon_gitsrcmainjavaitncomcmmserviceEgovFileMngService.java
Download as .zip file
File name
Commit message
Commit date
DATABASE
mjon_git
2023-06-12
src/main
회원 등급제 대상여부 정보(사용자화면용) 추가
2023-07-07
.codetogether.ignore
mjon_git
2023-06-12
.gitignore
gitignore 적용
2023-06-12
pom.xml
mjon_git
2023-06-12
File name
Commit message
Commit date
java
회원 등급제 대상여부 정보(사용자화면용) 추가
2023-07-07
resources
회원 등급제 대상여부 정보(사용자화면용) 추가
2023-07-07
webapp
간편결제 문구 추가
2023-07-07
File name
Commit message
Commit date
egovframework
mjon_git
2023-06-12
itn
회원 등급제 대상여부 정보(사용자화면용) 추가
2023-07-07
File name
Commit message
Commit date
com
Merge branch 'rosewiper'
2023-07-03
let
회원 등급제 대상여부 정보(사용자화면용) 추가
2023-07-07
web
전용계좌 첫결제시 스미싱알림 처리
2023-06-26
File name
Commit message
Commit date
api/web
mjon_git
2023-06-12
cmm
문자전송, 선거문자 하단 문자샘플, 그림샘플, 내문자함 검색어 입력 특수문자 입력 금지 기능 추가 - 기존 헤더부분 통합검색에만 적용되었던 기능을 확대 적용하였음.
2023-07-03
sym/log/ulg
mjon_git
2023-06-12
usr/search/web
mjon_git
2023-06-12
uss
feat: pms-#3232 [관리자] 스케쥴에 의해 IP 차단 시 슬렉 알림 추가 완료
2023-07-03
utl
mjon_git
2023-06-12
File name
Commit message
Commit date
aspect
mjon_git
2023-06-12
captcha
mjon_git
2023-06-12
filter
mjon_git
2023-06-12
interceptor
IPIgnore Interceptor IPv4/IPv6 모두 체크되도록 기능 수정
2023-07-03
service
mjon_git
2023-06-12
taglibs
mjon_git
2023-06-12
util
문자전송, 선거문자 하단 문자샘플, 그림샘플, 내문자함 검색어 입력 특수문자 입력 금지 기능 추가 - 기존 헤더부분 통합검색에만 적용되었던 기능을 확대 적용하였음.
2023-07-03
web
mjon_git
2023-06-12
AltibaseClobStringTypeHandler.java
mjon_git
2023-06-12
ComDefaultCodeVO.java
mjon_git
2023-06-12
ComDefaultVO.java
mjon_git
2023-06-12
EgovComCrossSiteHndlr.java
mjon_git
2023-06-12
EgovComExcepHndlr.java
mjon_git
2023-06-12
EgovComOthersExcepHndlr.java
mjon_git
2023-06-12
EgovComTraceHandler.java
mjon_git
2023-06-12
EgovMessageSource.java
mjon_git
2023-06-12
EgovMultiPartEmail.java
mjon_git
2023-06-12
EgovWebUtil.java
mjon_git
2023-06-12
ImagePaginationRenderer.java
mjon_git
2023-06-12
ImagePaginationRendererWeb.java
mjon_git
2023-06-12
JsonResult.java
mjon_git
2023-06-12
LoginVO.java
mjon_git
2023-06-12
ReadVO.java
mjon_git
2023-06-12
SessionVO.java
mjon_git
2023-06-12
UserVO.java
mjon_git
2023-06-12
File name
Commit message
Commit date
impl
mjon_git
2023-06-12
CmmnDetailCode.java
mjon_git
2023-06-12
EgovCmmUseService.java
mjon_git
2023-06-12
EgovFileMngService.java
mjon_git
2023-06-12
EgovFileMngUtil.java
mjon_git
2023-06-12
EgovProperties.java
mjon_git
2023-06-12
EgovUserDetailsService.java
mjon_git
2023-06-12
FileVO.java
mjon_git
2023-06-12
Globals.java
mjon_git
2023-06-12
ReadService.java
mjon_git
2023-06-12
hylee 2023-06-12 45d8771 mjon_git UNIX
Raw Open in browser Change history
package itn.com.cmm.service; import java.util.List; import java.util.Map; /** * @Class Name : EgovFileMngService.java * @Description : 파일정보의 관리를 위한 서비스 인터페이스 * @Modification Information * * 수정일 수정자 수정내용 * ------- ------- ------------------- * 2009. 3. 25. 이삼섭 최초생성 * * @author 공통 서비스 개발팀 이삼섭 * @since 2009. 3. 25. * @version * @see * */ public interface EgovFileMngService { /** * 파일에 대한 목록을 조회한다. * * @param fvo * @return * @throws Exception */ public List<FileVO> selectFileInfs(FileVO fvo) throws Exception; /** * 하나의 파일에 대한 정보(속성 및 상세)를 등록한다. * * @param fvo * @throws Exception */ public String insertFileInf(FileVO fvo) throws Exception; /** * 여러 개의 파일에 대한 정보(속성 및 상세)를 등록한다. * * @param fvoList * @throws Exception */ public String insertFileInfs(List<?> fvoList) throws Exception; /** * 여러 개의 파일에 대한 정보(속성 및 상세)를 수정한다. * * @param fvoList * @throws Exception */ public void updateFileInfs(List<?> fvoList) throws Exception; /** * 여러 개의 파일을 삭제한다. * * @param fvoList * @throws Exception */ public void deleteFileInfs(List<?> fvoList) throws Exception; /** * 하나의 파일을 삭제한다. * * @param fvo * @throws Exception */ public void deleteFileInf(FileVO fvo) throws Exception; /** * 파일에 대한 상세정보를 조회한다. * * @param fvo * @return * @throws Exception */ public FileVO selectFileInf(FileVO fvo) throws Exception; /** * 파일 구분자에 대한 최대값을 구한다. * * @param fvo * @return * @throws Exception */ public int getMaxFileSN(FileVO fvo) throws Exception; /** * 전체 파일을 삭제한다. * * @param fvo * @throws Exception */ public void deleteAllFileInf(FileVO fvo) throws Exception; /** * 파일명 검색에 대한 목록을 조회한다. * * @param fvo * @return * @throws Exception */ public Map<String, Object> selectFileListByFileNm(FileVO fvo) throws Exception; /** * 이미지 파일에 대한 목록을 조회한다. * * @param vo * @return * @throws Exception */ public List<FileVO> selectImageFileList(FileVO vo) throws Exception; /** * 이미지 파일에 대한 목록을 업데이트하다. * * @param vo * @return * @throws Exception */ public void updateFileInfo(List<FileVO> _result) throws Exception; public void deleteFmsFileInf(FileVO fileVO) throws Exception; }

          
        
    
    
Copyright Yona authors & © NAVER Corp. & NAVER LABS Supported by NAVER CLOUD PLATFORM

or
Sign in with github login with Google Sign in with Google
Reset password | Sign up