From 5627de474bcf997c2984f54a623d7d5596f080c2 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期五, 10 九月 2021 21:08:13 +0800
Subject: [PATCH] 优化 查询一下移除

---
 java110-bean/src/main/java/com/java110/entity/center/AppService.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/java110-bean/src/main/java/com/java110/entity/center/AppService.java b/java110-bean/src/main/java/com/java110/entity/center/AppService.java
old mode 100644
new mode 100755
index 527bf36..271f67c
--- a/java110-bean/src/main/java/com/java110/entity/center/AppService.java
+++ b/java110-bean/src/main/java/com/java110/entity/center/AppService.java
@@ -9,7 +9,7 @@
  */
 public class AppService implements Serializable{
 
-    private int serviceId;
+    private String serviceId;
 
     private String serviceCode;
 
@@ -37,11 +37,11 @@
 
     private String statusCd;
 
-    public int getServiceId() {
+    public String getServiceId() {
         return serviceId;
     }
 
-    public void setServiceId(int serviceId) {
+    public void setServiceId(String serviceId) {
         this.serviceId = serviceId;
     }
 
@@ -145,7 +145,7 @@
         this.setServiceCode(serviceInfo.get("service_code").toString());
         this.setTimeOut(Integer.parseInt(serviceInfo.get("timeout").toString()));
         this.setUrl(serviceInfo.get("url") == null ? null : serviceInfo.get("url").toString());
-        this.setServiceId(Integer.parseInt(serviceInfo.get("service_id").toString()));
+        this.setServiceId(serviceInfo.get("service_id").toString());
         this.setIsInstance(serviceInfo.get("is_instance").toString());
         this.setStatusCd("0");
         return this;

--
Gitblit v1.8.0