package com.jcdm.framework.web.domain.server; import com.jcdm.common.utils.Arith; /** * å…§å˜ç›¸å…³ä¿¡æ¯ * * @author jc */ 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); } }