From 402ffa0b1e6b0453338a57469e00903564ac53f5 Mon Sep 17 00:00:00 2001
From: linshunhua <my_lv@163.com>
Date: 星期二, 06 八月 2024 16:52:22 +0800
Subject: [PATCH] 修复在ORACLE,达梦等数据库下的用户查询BUG

---
 src/main/java/com/genersoft/iot/vmp/storager/dao/dto/UserApiKey.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/com/genersoft/iot/vmp/storager/dao/dto/UserApiKey.java b/src/main/java/com/genersoft/iot/vmp/storager/dao/dto/UserApiKey.java
index 470c8b6..b631295 100644
--- a/src/main/java/com/genersoft/iot/vmp/storager/dao/dto/UserApiKey.java
+++ b/src/main/java/com/genersoft/iot/vmp/storager/dao/dto/UserApiKey.java
@@ -38,7 +38,7 @@
      * 杩囨湡鏃堕棿锛坣ull=姘镐笉杩囨湡锛�
      */
     @Schema(description = "杩囨湡鏃堕棿锛坣ull=姘镐笉杩囨湡锛�")
-    private String expiredAt;
+    private long expiredAt;
 
     /**
      * 澶囨敞淇℃伅
@@ -101,11 +101,11 @@
         this.apiKey = apiKey;
     }
 
-    public String getExpiredAt() {
+    public long getExpiredAt() {
         return expiredAt;
     }
 
-    public void setExpiredAt(String expiredAt) {
+    public void setExpiredAt(long expiredAt) {
         this.expiredAt = expiredAt;
     }
 

--
Gitblit v1.8.0