180 lines
4.0 KiB
Java
180 lines
4.0 KiB
Java
package kcc.com.cmm.service;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.List;
|
|
|
|
import kcc.com.cmm.ComDefaultVO;
|
|
|
|
|
|
/**
|
|
*
|
|
* @author : 이호영
|
|
* @fileName : InnorixVO.java
|
|
* @date : 2022.11.01
|
|
* @description : 대용량 파일 등록 솔루션 VO
|
|
* ===========================================================
|
|
* DATE AUTHOR NOTE
|
|
* ----------------------------------------------------------- *
|
|
* 2022.11.01 이호영 최초 생성
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
public class InnorixFileVO extends ComDefaultVO implements Serializable {
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private static final long serialVersionUID = 5641887401063483713L;
|
|
|
|
public String rowID = "";
|
|
|
|
public String controlId = "";
|
|
|
|
public String uploadUrl = "";
|
|
|
|
public String clientFilePath = "";
|
|
|
|
public String clientFileName = "";
|
|
|
|
public String rootName = "";
|
|
|
|
public String fileState = "";
|
|
|
|
public Integer fileSize = 0;
|
|
|
|
public String serverFilePath = "";
|
|
|
|
public String serverFileName = "";
|
|
|
|
public Boolean isFolder = null;
|
|
|
|
public Boolean firstTransferCompleted = null;
|
|
|
|
public Integer totalTransferTime = 0;
|
|
|
|
public Integer transferTime = 0;
|
|
|
|
private String frstRegistPnttm;
|
|
|
|
private String frstRegisterId;
|
|
|
|
private String lastUpdtPnttm;
|
|
|
|
private String lastUpdusrId;
|
|
|
|
|
|
|
|
|
|
public String getRowID() {
|
|
return rowID;
|
|
}
|
|
public void setRowID(String rowID) {
|
|
this.rowID = rowID;
|
|
}
|
|
public String getControlId() {
|
|
return controlId;
|
|
}
|
|
public void setControlId(String controlId) {
|
|
this.controlId = controlId;
|
|
}
|
|
public String getUploadUrl() {
|
|
return uploadUrl;
|
|
}
|
|
public void setUploadUrl(String uploadUrl) {
|
|
this.uploadUrl = uploadUrl;
|
|
}
|
|
public String getClientFilePath() {
|
|
return clientFilePath;
|
|
}
|
|
public void setClientFilePath(String clientFilePath) {
|
|
this.clientFilePath = clientFilePath;
|
|
}
|
|
public String getClientFileName() {
|
|
return clientFileName;
|
|
}
|
|
public void setClientFileName(String clientFileName) {
|
|
this.clientFileName = clientFileName;
|
|
}
|
|
public String getRootName() {
|
|
return rootName;
|
|
}
|
|
public void setRootName(String rootName) {
|
|
this.rootName = rootName;
|
|
}
|
|
public String getFileState() {
|
|
return fileState;
|
|
}
|
|
public void setFileState(String fileState) {
|
|
this.fileState = fileState;
|
|
}
|
|
public Integer getFileSize() {
|
|
return fileSize;
|
|
}
|
|
public void setFileSize(Integer fileSize) {
|
|
this.fileSize = fileSize;
|
|
}
|
|
public String getServerFilePath() {
|
|
return serverFilePath;
|
|
}
|
|
public void setServerFilePath(String serverFilePath) {
|
|
this.serverFilePath = serverFilePath;
|
|
}
|
|
public String getServerFileName() {
|
|
return serverFileName;
|
|
}
|
|
public void setServerFileName(String serverFileName) {
|
|
this.serverFileName = serverFileName;
|
|
}
|
|
public Boolean getIsFolder() {
|
|
return isFolder;
|
|
}
|
|
public void setIsFolder(Boolean isFolder) {
|
|
this.isFolder = isFolder;
|
|
}
|
|
public Boolean getFirstTransferCompleted() {
|
|
return firstTransferCompleted;
|
|
}
|
|
public void setFirstTransferCompleted(Boolean firstTransferCompleted) {
|
|
this.firstTransferCompleted = firstTransferCompleted;
|
|
}
|
|
public Integer getTotalTransferTime() {
|
|
return totalTransferTime;
|
|
}
|
|
public void setTotalTransferTime(Integer totalTransferTime) {
|
|
this.totalTransferTime = totalTransferTime;
|
|
}
|
|
public Integer getTransferTime() {
|
|
return transferTime;
|
|
}
|
|
public void setTransferTime(Integer transferTime) {
|
|
this.transferTime = transferTime;
|
|
}
|
|
public String getFrstRegistPnttm() {
|
|
return frstRegistPnttm;
|
|
}
|
|
public void setFrstRegistPnttm(String frstRegistPnttm) {
|
|
this.frstRegistPnttm = frstRegistPnttm;
|
|
}
|
|
public String getFrstRegisterId() {
|
|
return frstRegisterId;
|
|
}
|
|
public void setFrstRegisterId(String frstRegisterId) {
|
|
this.frstRegisterId = frstRegisterId;
|
|
}
|
|
public String getLastUpdtPnttm() {
|
|
return lastUpdtPnttm;
|
|
}
|
|
public void setLastUpdtPnttm(String lastUpdtPnttm) {
|
|
this.lastUpdtPnttm = lastUpdtPnttm;
|
|
}
|
|
public String getLastUpdusrId() {
|
|
return lastUpdusrId;
|
|
}
|
|
public void setLastUpdusrId(String lastUpdusrId) {
|
|
this.lastUpdusrId = lastUpdusrId;
|
|
}
|
|
|
|
|
|
|
|
} |