This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-argus-service/src/main/java/com/nis/domain/restful/FileDesc.java
2018-06-02 13:01:27 +08:00

101 lines
1.8 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
*
*/
package com.nis.domain.restful;
import java.util.Date;
/**
* @ClassName:FileDesc
* @Description:TODO(这里用一句话描述这个类的作用)
* @author (zdx)
* @date 2018年5月21日 下午8:09:06
* @version V1.0
*/
public class FileDesc {
/**
* 文件格式类型
*/
private String filetype;
/**
* 文件数据类型
*/
private String dataType;
/**
* fileSystem
*/
private String fileSystem;
/**
* 文件创建时间UTC时间格式
*/
private Date createTime;
/**
* 文件惟一key
*/
private String key;
/**
*文件名称
*/
private String fileName;
/**
* 文件md5校验码
*/
private String checksum;
/**
*
*/
public FileDesc() {
super();
// TODO Auto-generated constructor stub
}
/**
* @param filetype
* @param createTime
* @param key
* @param fileName
* @param checksum
*/
public FileDesc(String filetype, Date createTime, String key,
String fileName, String checksum) {
super();
this.filetype = filetype;
this.createTime = createTime;
this.key = key;
this.fileName = fileName;
this.checksum = checksum;
}
public String getFiletype() {
return filetype;
}
public void setFiletype(String filetype) {
this.filetype = filetype;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public String getChecksum() {
return checksum;
}
public void setChecksum(String checksum) {
this.checksum = checksum;
}
}