From 8d90833250abee5951572659e9a192f2487cd704 Mon Sep 17 00:00:00 2001
From: zhang <zc857179121@qq.com>
Date: 星期一, 03 十一月 2025 09:30:52 +0800
Subject: [PATCH] 标准wms2.0
---
 src/main/java/com/zy/asrs/entity/AppVersion.java |   41 +++++++++++++++++++++++------------------
 1 files changed, 23 insertions(+), 18 deletions(-)
diff --git a/src/main/java/com/zy/asrs/entity/AppVersion.java b/src/main/java/com/zy/asrs/entity/AppVersion.java
index d9e9c1e..5faef0c 100644
--- a/src/main/java/com/zy/asrs/entity/AppVersion.java
+++ b/src/main/java/com/zy/asrs/entity/AppVersion.java
@@ -1,11 +1,11 @@
 package com.zy.asrs.entity;
 
-import com.core.common.Cools;import com.baomidou.mybatisplus.annotations.TableId;
+import com.baomidou.mybatisplus.annotations.TableId;
+import com.baomidou.mybatisplus.annotations.TableName;
 import com.baomidou.mybatisplus.enums.IdType;
-
 import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
-import com.baomidou.mybatisplus.annotations.TableName;
+
 import java.io.Serializable;
 
 @Data
@@ -14,37 +14,38 @@
 
     private static final long serialVersionUID = 1L;
 
-    @ApiModelProperty(value= "")
+    @ApiModelProperty(value = "")
     @TableId(value = "id", type = IdType.AUTO)
     private Long id;
 
     /**
      * 鐗堟湰鍙�
      */
-    @ApiModelProperty(value= "鐗堟湰鍙�")
+    @ApiModelProperty(value = "鐗堟湰鍙�")
     private String version;
 
     /**
      * app璺緞
      */
-    @ApiModelProperty(value= "app璺緞")
+    @ApiModelProperty(value = "app璺緞")
     private String path;
 
     /**
-     * 鏄惁涓烘渶鏂扮増鏈� 0: 鍚�  1: 鏄�  
+     * 鏄惁涓烘渶鏂扮増鏈� 0: 鍚�  1: 鏄�
      */
-    @ApiModelProperty(value= "鏄惁涓烘渶鏂扮増鏈� 0: 鍚�  1: 鏄�  ")
+    @ApiModelProperty(value = "鏄惁涓烘渶鏂扮増鏈� 0: 鍚�  1: 鏄�  ")
     private Integer latest;
 
     /**
-     * app绫诲瀷 0: pda  1: lcd  
+     * app绫诲瀷 0: pda  1: lcd
      */
-    @ApiModelProperty(value= "app绫诲瀷 0: pda  1: lcd  ")
+    @ApiModelProperty(value = "app绫诲瀷 0: pda  1: lcd  ")
     private Integer type;
 
-    public AppVersion() {}
+    public AppVersion() {
+    }
 
-    public AppVersion(String version,String path,Integer latest,Integer type) {
+    public AppVersion(String version, String path, Integer latest, Integer type) {
         this.version = version;
         this.path = path;
         this.latest = latest;
@@ -58,9 +59,11 @@
 //            null    // app绫诲瀷
 //    );
 
-    public String getLatest$(){
-        if (null == this.latest){ return null; }
-        switch (this.latest){
+    public String getLatest$() {
+        if (null == this.latest) {
+            return null;
+        }
+        switch (this.latest) {
             case 0:
                 return "鍚�";
             case 1:
@@ -70,9 +73,11 @@
         }
     }
 
-    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 0:
                 return "pda";
             case 1:
--
Gitblit v1.9.1