疯狂的狮子li
2020-02-18 a1cf719d268a9d16db81ece94e75037c844f898f
ruoyi/src/main/java/com/ruoyi/framework/web/domain/server/Mem.java
对比新文件
@@ -0,0 +1,61 @@
package com.ruoyi.framework.web.domain.server;
import com.ruoyi.common.utils.Arith;
/**
 * 鍏у瓨鐩稿叧淇℃伅
 *
 * @author ruoyi
 */
public class Mem
{
    /**
     * 鍐呭瓨鎬婚噺
     */
    private double total;
    /**
     * 宸茬敤鍐呭瓨
     */
    private double used;
    /**
     * 鍓╀綑鍐呭瓨
     */
    private double free;
    public double getTotal()
    {
        return Arith.div(total, (1024 * 1024 * 1024), 2);
    }
    public void setTotal(long total)
    {
        this.total = total;
    }
    public double getUsed()
    {
        return Arith.div(used, (1024 * 1024 * 1024), 2);
    }
    public void setUsed(long used)
    {
        this.used = used;
    }
    public double getFree()
    {
        return Arith.div(free, (1024 * 1024 * 1024), 2);
    }
    public void setFree(long free)
    {
        this.free = free;
    }
    public double getUsage()
    {
        return Arith.mul(Arith.div(used, total, 4), 100);
    }
}