From 82de5a307466894bbb0258f8a63a26a7bb96d80d Mon Sep 17 00:00:00 2001
From: zhang <zc857179121@qq.com>
Date: 星期四, 16 十月 2025 09:55:35 +0800
Subject: [PATCH] 13

---
 src/main/java/com/zy/system/entity/Config.java |   25 +++++++++++++++----------
 1 files changed, 15 insertions(+), 10 deletions(-)

diff --git a/src/main/java/com/zy/system/entity/Config.java b/src/main/java/com/zy/system/entity/Config.java
index 9b6a39a..d472403 100644
--- a/src/main/java/com/zy/system/entity/Config.java
+++ b/src/main/java/com/zy/system/entity/Config.java
@@ -33,18 +33,19 @@
     private String value;
 
     /**
-     * 绫诲瀷 1: String  2: JSON  
+     * 绫诲瀷 1: String  2: JSON
      */
     private Short type;
 
     /**
-     * 鐘舵�� 1: 姝e父  0: 绂佺敤  
+     * 鐘舵�� 1: 姝e父  0: 绂佺敤
      */
     private Short status;
 
-    public Config() {}
+    public Config() {
+    }
 
-    public Config(String name,String code,String value,Short type,Short status) {
+    public Config(String name, String code, String value, Short type, Short status) {
         this.name = name;
         this.code = code;
         this.value = value;
@@ -96,9 +97,11 @@
         return type;
     }
 
-    public String getType$(){
-        if (null == this.type){ return null; }
-        switch (this.type){
+    public String getType$() {
+        if (null == this.type) {
+            return null;
+        }
+        switch (this.type) {
             case 1:
                 return "String";
             case 2:
@@ -116,9 +119,11 @@
         return status;
     }
 
-    public String getStatus$(){
-        if (null == this.status){ return null; }
-        switch (this.status){
+    public String getStatus$() {
+        if (null == this.status) {
+            return null;
+        }
+        switch (this.status) {
             case 1:
                 return "姝e父";
             case 0:

--
Gitblit v1.9.1