mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-10-30 09:48:43 +08:00 
			
		
		
		
	1. 完成通知模块的迁移
2. 实现 excel 导出的基础功能
This commit is contained in:
		| @@ -58,31 +58,16 @@ public class Cpu { | ||||
|         return Arith.round(Arith.mul(sys / total, 100), 2); | ||||
|     } | ||||
|  | ||||
|     public void setSys(double sys) { | ||||
|         this.sys = sys; | ||||
|     } | ||||
|  | ||||
|     public double getUsed() { | ||||
|         return Arith.round(Arith.mul(used / total, 100), 2); | ||||
|     } | ||||
|  | ||||
|     public void setUsed(double used) { | ||||
|         this.used = used; | ||||
|     } | ||||
|  | ||||
|     public double getWait() { | ||||
|         return Arith.round(Arith.mul(wait / total, 100), 2); | ||||
|     } | ||||
|  | ||||
|     public void setWait(double wait) { | ||||
|         this.wait = wait; | ||||
|     } | ||||
|  | ||||
|     public double getFree() { | ||||
|         return Arith.round(Arith.mul(free / total, 100), 2); | ||||
|     } | ||||
|  | ||||
|     public void setFree(double free) { | ||||
|         this.free = free; | ||||
|     } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 YunaiV
					YunaiV