
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
package com.takensoft.common.file.vo;
import lombok.Data;
/**
* @author : takensoft
* @since : 2024.04.01
* @modification
* since | author | description
* 2024.04.01 | takensoft | 최초 등록
*
* 파일 관련 VO
*/
@Data
public class FileVO {
private int fileId; // 파일아이디
private String fileMngId; // 파일관리아이디
private String fileNm; // 파일명
private String maskNm; // 마스크명
private String fileType; // 파일타입
private String absltPath; // 절대경로
private String partPath; // 일부경로
private String extnNm; // 확장자
private String fileSz; // 크기
private String rgtr; // 등록자
private String regDt; // 등록일
}