All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ideaaedi.commonds.monitor.info.SystemDiskInfo Maven / Gradle / Ivy

The newest version!
package com.ideaaedi.commonds.monitor.info;

import lombok.Data;

/**
 * 系统磁盘信息
 *
 * @author JustryDeng 
 * @since 2022/7/8 17:10
 */
@Data
public class SystemDiskInfo {

    /** 磁盘 */
    private String path;
    
    /** totalSpace */
    private String totalSpace;
    
    /** freeSpace */
    private String freeSpace;
    
    /** usableSpace */
    private String usableSpace;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy