• Y
  • List All
  • Feedback
    • This Project
    • This Group
    • All Projects
Profile Account settings Log out
  • Favorite
  • Project
  • All
Loading...
  • Log in
  • Sign up
2025_PROJECT / orgasis star
  • Project homeH
  • CodeC
  • IssueI
  • Pull requestP
  • Review R
  • MilestoneM
  • BoardB
  • Files
  • Commit
  • Branches
orgasissrcmainjavakcccomcmmserviceEgovFileMngService.java
Download as .zip file
File name
Commit message
Commit date
src/main
Merge branch 'master' of http://hylee@vcs.iten.co.kr:9999/2025_PROJECT/orgasis
01-30
.gitignore
5648 관리자 메인비주얼관리 수정
01-26
README.md
first commit
2025-12-11
pom.xml
first commit
2025-12-11
File name
Commit message
Commit date
java/kcc
접속통계 게시판 오류 수정
01-30
resources
접속통계 게시판 오류 수정
01-30
webapp
Merge branch 'master' of http://hylee@vcs.iten.co.kr:9999/2025_PROJECT/orgasis
01-30
File name
Commit message
Commit date
com
팝업관리 오류 수정
01-29
let
접속통계 게시판 오류 수정
01-30
web
팝업오류 수정
01-30
xxx
first commit
2025-12-11
File name
Commit message
Commit date
cmm
포토 getImage.do 컨트롤러 이동
01-28
sym/log/ulg
first commit
2025-12-11
uss/ion
팝업관리 오류 수정
01-29
utl
first commit
2025-12-11
File name
Commit message
Commit date
aspect
first commit
2025-12-11
captcha
first commit
2025-12-11
exception
first commit
2025-12-11
filter
first commit
2025-12-11
interceptor
first commit
2025-12-11
service
first commit
2025-12-11
spring
first commit
2025-12-11
taglibs
first commit
2025-12-11
util
first commit
2025-12-11
web
포토 getImage.do 컨트롤러 이동
01-28
AltibaseClobStringTypeHandler.java
first commit
2025-12-11
CmmUtil.java
first commit
2025-12-11
ComDefaultCodeVO.java
first commit
2025-12-11
ComDefaultVO.java
first commit
2025-12-11
EgovComCrossSiteHndlr.java
first commit
2025-12-11
EgovComExcepHndlr.java
first commit
2025-12-11
EgovComOthersExcepHndlr.java
first commit
2025-12-11
EgovComTraceHandler.java
first commit
2025-12-11
EgovMessageSource.java
first commit
2025-12-11
EgovMultiPartEmail.java
first commit
2025-12-11
EgovWebUtil.java
first commit
2025-12-11
ImagePaginationRenderer.java
first commit
2025-12-11
ImagePaginationRendererWeb.java
first commit
2025-12-11
JsonResult.java
first commit
2025-12-11
LoginVO.java
first commit
2025-12-11
ReadVO.java
first commit
2025-12-11
SessionVO.java
first commit
2025-12-11
UserVO.java
first commit
2025-12-11
File name
Commit message
Commit date
impl
first commit
2025-12-11
AdrCourtFileMngService.java
first commit
2025-12-11
AdrCourtFileVO.java
first commit
2025-12-11
CmmnDetailCode.java
first commit
2025-12-11
EgovCmmUseService.java
first commit
2025-12-11
EgovFileMngService.java
first commit
2025-12-11
EgovFileMngUtil.java
first commit
2025-12-11
EgovProperties.java
first commit
2025-12-11
EgovUserDetailsService.java
first commit
2025-12-11
FileVO.java
first commit
2025-12-11
Globals.java
first commit
2025-12-11
ReadService.java
first commit
2025-12-11
SatisVO.java
first commit
2025-12-11
SequenceUtilService.java
first commit
2025-12-11
hehihoho3@gmail.com 2025-12-11 e1cf3f9 first commit UNIX
Raw Open in browser Change history
package kcc.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