From 53ce8de426561e7a43847afda23b5e24e6f76c4e Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期一, 19 一月 2026 17:29:55 +0800
Subject: [PATCH] 2026.1.19 1. 新增可配置的台账提交期限 2. 新增可配置的自巡查承诺
---
src/main/kotlin/cn/flightfeather/supervision/lightshare/service/NotificationService.kt | 17 +++++++++++------
1 files changed, 11 insertions(+), 6 deletions(-)
diff --git a/src/main/kotlin/cn/flightfeather/supervision/lightshare/service/NotificationService.kt b/src/main/kotlin/cn/flightfeather/supervision/lightshare/service/NotificationService.kt
index 876e36b..871af70 100644
--- a/src/main/kotlin/cn/flightfeather/supervision/lightshare/service/NotificationService.kt
+++ b/src/main/kotlin/cn/flightfeather/supervision/lightshare/service/NotificationService.kt
@@ -1,16 +1,15 @@
package cn.flightfeather.supervision.lightshare.service
-import cn.flightfeather.supervision.domain.entity.MeetingInfo
-import cn.flightfeather.supervision.domain.entity.VMRoom
-import cn.flightfeather.supervision.lightshare.vo.LedgerSubTypeVo
-import cn.flightfeather.supervision.lightshare.vo.LedgerVo
-import cn.flightfeather.supervision.lightshare.vo.NoticeReadStateVo
-import cn.flightfeather.supervision.lightshare.vo.NotificationVo
+import cn.flightfeather.supervision.common.wx.MessageWxVo
+import cn.flightfeather.supervision.domain.entity.*
+import cn.flightfeather.supervision.lightshare.vo.*
import java.util.*
import javax.servlet.http.HttpServletResponse
import kotlin.collections.ArrayList
interface NotificationService {
+
+ fun getAllNotices(userId: String, noticeConfig: NoticeConfig, page: Int, perPage: Int): BaseResponse<List<Notice>>
fun getNotificationUnRead(userId: String, page: Int, per_page: Int, response: HttpServletResponse): List<NotificationVo>
@@ -26,4 +25,10 @@
fun pushMeetingReleaseNotification(meetingVo: MeetingInfo, roomVo: VMRoom?, userId: String, title: String, body: String)
fun releaseNotice(userId: String, noticeVo: NotificationVo): Boolean
+
+ fun releaseNotice2(userId: String, noticeVo: NotificationVo): Notice
+
+ fun pushMsgWx(templateId: Int): String
+
+ fun getTemplate(typeId: Int, subTypeId: Int):BaseResponse<List<NoticeTemplate?>>
}
\ No newline at end of file
--
Gitblit v1.9.3