Newer
Older
scanSDFile / app / src / main / java / com / bell / scansdcardfiles / bean / FileData.java
bello on 3 Jun 2019 1 KB 修改gradle
package com.bell.scansdcardfiles.bean;

import java.io.Serializable;

/**
 * Created by bell on 17/10/11.
 */

public class FileData implements Serializable {

    private String fileName;    //文件名
    private String fileSize;    //文件大小 或 文件个数
    private String fileTime;    //文件时间
    private String filePath;    //文件路径
    private boolean isFile;     //是否文件


    public String getFilePath() {
        return filePath;
    }

    public void setFilePath(String filePath) {
        this.filePath = filePath;
    }

    public boolean isFile() {
        return isFile;
    }

    public void setFile(boolean file) {
        isFile = file;
    }

    public String getFileName() {
        return fileName;
    }

    public void setFileName(String fileName) {
        this.fileName = fileName;
    }

    public String getFileSize() {
        return fileSize;
    }

    public void setFileSize(String fileSize) {
        this.fileSize = fileSize;
    }

    public String getFileTime() {
        return fileTime;
    }

    public void setFileTime(String fileTime) {
        this.fileTime = fileTime;
    }
}