From c4981fa8aa11b6509a5fb21f11ebe01c868a666a Mon Sep 17 00:00:00 2001
From: zhangc <zc@123>
Date: 星期六, 15 三月 2025 11:01:22 +0800
Subject: [PATCH] 配置信息

---
 src/main/java/com/zy/system/controller/HomeController.java |   33 +++++++++++++++++----------------
 1 files changed, 17 insertions(+), 16 deletions(-)

diff --git a/src/main/java/com/zy/system/controller/HomeController.java b/src/main/java/com/zy/system/controller/HomeController.java
index 6568c90..a659fb7 100644
--- a/src/main/java/com/zy/system/controller/HomeController.java
+++ b/src/main/java/com/zy/system/controller/HomeController.java
@@ -30,7 +30,7 @@
 
     @RequestMapping("/top")
     @ManagerAuth
-    public R top(){
+    public R top() {
         int logTotal = operateLogService.selectCount(new EntityWrapper<>());
         int logWeek = operateLogService.selectCountByCurrentWeek();
         int userTotal = userService.selectCount(new EntityWrapper<>());
@@ -40,14 +40,14 @@
         result.put("logTotal", logTotal);
         result.put("logWeek", logWeek);
         result.put("userTotal", userTotal);
-        result.put("live", Arith.multiplys(0, Arith.divides(2, loginWeek, userTotal), 100)+"%");
+        result.put("live", Arith.multiplys(0, Arith.divides(2, loginWeek, userTotal), 100) + "%");
         return R.ok(result);
     }
 
 
     @RequestMapping("/report")
     @ManagerAuth
-    public R top(@RequestParam(defaultValue = "1", value = "type", required = false)Integer type){
+    public R top(@RequestParam(defaultValue = "1", value = "type", required = false) Integer type) {
         Calendar calendar = Calendar.getInstance();
         calendar.setTime(new Date());
 
@@ -71,15 +71,15 @@
     /**
      * 鑷姩琛ラ浂
      */
-    private List<Map<String, Object>> fill(List<Map<String, Object>> list, int start, int end){
-        for (int i = start ; i <= end; i++){
+    private List<Map<String, Object>> fill(List<Map<String, Object>> list, int start, int end) {
+        for (int i = start; i <= end; i++) {
             boolean exist = false;
-            for (Map seq : list){
-                if (Integer.parseInt(String.valueOf(seq.get("node"))) == i){
+            for (Map seq : list) {
+                if (Integer.parseInt(String.valueOf(seq.get("node"))) == i) {
                     exist = true;
                 }
             }
-            if (!exist){
+            if (!exist) {
                 HashMap<String, Object> map = new HashMap<>();
                 map.put("node", i);
                 map.put("val", 0);
@@ -94,12 +94,12 @@
      * x杞村崟浣嶈浆鎹�
      * @param dot y杞存暟鍊间繚鐣欏皬鏁颁綅
      */
-    private List<Map<String, Object>> convert(List<Map<String, Object>> list, StatsType statsType, int dot){
-        for (Map<String, Object> map : list){
+    private List<Map<String, Object>> convert(List<Map<String, Object>> list, StatsType statsType, int dot) {
+        for (Map<String, Object> map : list) {
             Object val = map.get("val");
             map.put("val", Arith.multiplys(dot, 1, (Number) val));
             Object node = map.get("node");
-            switch (statsType){
+            switch (statsType) {
                 case MONTH:
                     map.put("node", node + "鍙�");
                     break;
@@ -113,15 +113,16 @@
         return list;
     }
 
-    enum StatsType{
+    enum StatsType {
 
-        YEAR(1,1, 12),
-        MONTH(2,1, 30),
+        YEAR(1, 1, 12),
+        MONTH(2, 1, 30),
         ;
 
         int id;
         int start;
         int end;
+
         StatsType(int id, int start, int end) {
             this.id = id;
             this.start = start;
@@ -130,8 +131,8 @@
 
         static StatsType get(int id) {
             StatsType[] values = StatsType.values();
-            for (StatsType statsType : values){
-                if (statsType.id == id){
+            for (StatsType statsType : values) {
+                if (statsType.id == id) {
                     return statsType;
                 }
             }

--
Gitblit v1.9.1