From cc0bdfb33ef638dfafe3185c92c7076d815e1c9b Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期六, 18 五月 2024 21:42:19 +0800
Subject: [PATCH] 代码优化

---
 smart-man-boot/src/main/java/com/qianwen/smartman/modules/notify/service/impl/NotifyHistoryServiceImpl.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/smart-man-boot/src/main/java/com/qianwen/smartman/modules/notify/service/impl/NotifyHistoryServiceImpl.java b/smart-man-boot/src/main/java/com/qianwen/smartman/modules/notify/service/impl/NotifyHistoryServiceImpl.java
index 3b45c78..2f216f2 100644
--- a/smart-man-boot/src/main/java/com/qianwen/smartman/modules/notify/service/impl/NotifyHistoryServiceImpl.java
+++ b/smart-man-boot/src/main/java/com/qianwen/smartman/modules/notify/service/impl/NotifyHistoryServiceImpl.java
@@ -16,7 +16,7 @@
 import org.springframework.stereotype.Service;
 
 @Service
-/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/service/impl/NotifyHistoryServiceImpl.class */
+
 public class NotifyHistoryServiceImpl extends BaseServiceImpl<NotifyHistoryEntityMapper, NotifyHistoryEntity> implements INotifyHistoryService {
     private static final Logger log = LoggerFactory.getLogger(NotifyHistoryServiceImpl.class);
     private final NotifyHistoryEntityMapper notifyHistoryEntityMapper;
@@ -27,7 +27,7 @@
         this.notifyConfigService = notifyConfigService;
     }
 
-    @Override // org.springblade.modules.notify.service.INotifyHistoryService
+    
     public IPage<NotifyHistoryEntity> listPage(Query query, String state, String keyword, String beginTime, String endTime) {
         IPage<NotifyHistoryEntity> iPage = this.notifyHistoryEntityMapper.listPage(Condition.getPage(query), (state == null || !state.contains(",")) ? state : null, keyword, beginTime, endTime);
         List<NotifyHistoryEntity> records = iPage.getRecords();

--
Gitblit v1.9.3