package com.vci.dto;
|
|
import java.io.Serializable;
|
import java.util.Collection;
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* 文件数据传输对象
|
* @author ludc
|
* @date 2024/7/16 14:14
|
*/
|
public class VciFileObjectDTO implements Serializable {
|
private static final long serialVersionUID = 5916046307355781994L;
|
private String oid;
|
private Date ts;
|
private String id;
|
private String name;
|
private String fileDocClassify;
|
private String fileDocClassifyName;
|
private String keyInfos;
|
private String ownbizOid;
|
private String ownBtmname;
|
private Integer secretGrade;
|
private boolean updateFileFlag = false;
|
private String fileOid;
|
private String filePath;
|
private String dirPath;
|
private String fileExtension;
|
private long fileSize;
|
private boolean effect = true;
|
private String sourceFilePath;
|
private List<VciFileObjectDTO> vciFileObjectDTOList;
|
private Collection<VciFileObjectDTO> vciFileObjectDTOS;
|
private boolean checkSameFile = true;
|
|
public VciFileObjectDTO() {
|
}
|
|
public String getKeyInfos() {
|
return this.keyInfos;
|
}
|
|
public void setKeyInfos(String keyInfos) {
|
this.keyInfos = keyInfos;
|
}
|
|
public String getOwnbizOid() {
|
return this.ownbizOid;
|
}
|
|
public void setOwnbizOid(String ownbizOid) {
|
this.ownbizOid = ownbizOid;
|
}
|
|
public String getOwnBtmname() {
|
return this.ownBtmname;
|
}
|
|
public void setOwnBtmname(String ownBtmname) {
|
this.ownBtmname = ownBtmname;
|
}
|
|
public boolean isUpdateFileFlag() {
|
return this.updateFileFlag;
|
}
|
|
public void setUpdateFileFlag(boolean updateFileFlag) {
|
this.updateFileFlag = updateFileFlag;
|
}
|
|
public String getFileOid() {
|
return this.fileOid;
|
}
|
|
public void setFileOid(String fileOid) {
|
this.fileOid = fileOid;
|
}
|
|
public String getId() {
|
return this.id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return this.name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getFileDocClassify() {
|
return this.fileDocClassify;
|
}
|
|
public void setFileDocClassify(String fileDocClassify) {
|
this.fileDocClassify = fileDocClassify;
|
}
|
|
public Integer getSecretGrade() {
|
return this.secretGrade;
|
}
|
|
public void setSecretGrade(Integer secretGrade) {
|
this.secretGrade = secretGrade;
|
}
|
|
public String getOid() {
|
return this.oid;
|
}
|
|
public void setOid(String oid) {
|
this.oid = oid;
|
}
|
|
public Date getTs() {
|
return this.ts;
|
}
|
|
public void setTs(Date ts) {
|
this.ts = ts;
|
}
|
|
public String getFilePath() {
|
return this.filePath;
|
}
|
|
public void setFilePath(String filePath) {
|
this.filePath = filePath;
|
}
|
|
public String getFileExtension() {
|
return this.fileExtension;
|
}
|
|
public void setFileExtension(String fileExtension) {
|
this.fileExtension = fileExtension;
|
}
|
|
public long getFileSize() {
|
return this.fileSize;
|
}
|
|
public void setFileSize(long fileSize) {
|
this.fileSize = fileSize;
|
}
|
|
public String getDirPath() {
|
return this.dirPath;
|
}
|
|
public void setDirPath(String dirPath) {
|
this.dirPath = dirPath;
|
}
|
|
public String getFileDocClassifyName() {
|
return this.fileDocClassifyName;
|
}
|
|
public void setFileDocClassifyName(String fileDocClassifyName) {
|
this.fileDocClassifyName = fileDocClassifyName;
|
}
|
|
public boolean isEffect() {
|
return this.effect;
|
}
|
|
public void setEffect(boolean effect) {
|
this.effect = effect;
|
}
|
|
public String getSourceFilePath() {
|
return this.sourceFilePath;
|
}
|
|
public void setSourceFilePath(String sourceFilePath) {
|
this.sourceFilePath = sourceFilePath;
|
}
|
|
public Collection<VciFileObjectDTO> getVciFileObjectDTOS() {
|
return this.vciFileObjectDTOS;
|
}
|
|
public void setVciFileObjectDTOS(Collection<VciFileObjectDTO> vciFileObjectDTOS) {
|
this.vciFileObjectDTOS = vciFileObjectDTOS;
|
}
|
|
public List<VciFileObjectDTO> getVciFileObjectDTOList() {
|
return this.vciFileObjectDTOList;
|
}
|
|
public void setVciFileObjectDTOList(List<VciFileObjectDTO> vciFileObjectDTOList) {
|
this.vciFileObjectDTOList = vciFileObjectDTOList;
|
}
|
|
public boolean isCheckSameFile() {
|
return this.checkSameFile;
|
}
|
|
public void setCheckSameFile(boolean checkSameFile) {
|
this.checkSameFile = checkSameFile;
|
}
|
|
public String toString() {
|
return "VciFileObjectDTO{oid='" + this.oid + '\'' + ", ts=" + this.ts + ", id='" + this.id + '\'' + ", name='" + this.name + '\'' + ", fileDocClassify='" + this.fileDocClassify + '\'' + ", fileDocClassifyName='" + this.fileDocClassifyName + '\'' + ", keyInfos='" + this.keyInfos + '\'' + ", ownbizOid='" + this.ownbizOid + '\'' + ", ownBtmname='" + this.ownBtmname + '\'' + ", secretGrade=" + this.secretGrade + ", updateFileFlag=" + this.updateFileFlag + ", fileOid='" + this.fileOid + '\'' + ", filePath='" + this.filePath + '\'' + ", dirPath='" + this.dirPath + '\'' + ", fileExtension='" + this.fileExtension + '\'' + ", fileSize=" + this.fileSize + ", effect=" + this.effect + ", sourceFilePath='" + this.sourceFilePath + '\'' + ", vciFileObjectDTOList=" + this.vciFileObjectDTOList + ", vciFileObjectDTOS=" + this.vciFileObjectDTOS + ", checkSameFile=" + this.checkSameFile + '}';
|
}
|
}
|