package model; /** * 硬盘模块类 * * @author 赵庆洋 * */ public class Disk { private String fileName; private String totalSpace; private String freeSpace; private String path; public String getFileName() { return fileName; } public void setFileName(String fileName) { this.fileName = fileName; } public String getTotalSpace() { return totalSpace; } public void setTotalSpace(String totalSpace) { this.totalSpace = totalSpace; } public String getFreeSpace() { return freeSpace; } public void setFreeSpace(String freeSpace) { this.freeSpace = freeSpace; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } }