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/NotifySystemServiceImpl.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/smart-man-boot/src/main/java/com/qianwen/smartman/modules/notify/service/impl/NotifySystemServiceImpl.java b/smart-man-boot/src/main/java/com/qianwen/smartman/modules/notify/service/impl/NotifySystemServiceImpl.java
index 4b3465f..3f91be9 100644
--- a/smart-man-boot/src/main/java/com/qianwen/smartman/modules/notify/service/impl/NotifySystemServiceImpl.java
+++ b/smart-man-boot/src/main/java/com/qianwen/smartman/modules/notify/service/impl/NotifySystemServiceImpl.java
@@ -32,7 +32,7 @@
 import com.qianwen.smartman.modules.system.service.IDictService;
 
 @Service
-/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/service/impl/NotifySystemServiceImpl.class */
+
 public class NotifySystemServiceImpl extends BaseServiceImpl<NotifySystemMapper, NotifySystem> implements INotifySystemService {
     @Autowired
     @Lazy
@@ -40,7 +40,7 @@
     @Autowired
     private IDictService dictService;
 
-    @Override // org.springblade.modules.notify.service.INotifySystemService
+    
     public NotifySystemUnreadVO getUnreadList() {
     	
     	List<Dict> dicts = this.dictService.list(Wrappers.<Dict>lambdaQuery().select(Dict::getDictKey, Dict::getDictValue).eq(Dict::getCode, DictConstant.NOTICE_CODE));
@@ -77,7 +77,7 @@
         return notifySystemUnreadVO;
     }
 
-    @Override // org.springblade.modules.notify.service.INotifySystemService
+    
     public IPage<NotifySystemVO> pageNotifySystem(NotifySystemSelectVO selectVO, IPage<NotifySystem> page) {
         Long userId = AuthUtil.getUserId();
         Integer notifyType = selectVO.getNotifyType();
@@ -120,7 +120,7 @@
         }
     }
 
-    @Override // org.springblade.modules.notify.service.INotifySystemService
+    
     public NotifySystemVO detail(String id) {
         NotifySystem system = (NotifySystem) getById(id);
         Integer notifyType = system.getNotifyType();

--
Gitblit v1.9.3