From fe33646ee6e2d1e57f2b51812e94983a0e9efb04 Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期日, 14 十二月 2025 16:51:28 +0800
Subject: [PATCH] feat: 修复统计
---
ruoyi-system/src/main/java/com/ruoyi/system/domain/NotifySendLog.java | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/NotifySendLog.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/NotifySendLog.java
index e14ee2d..17fe165 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/NotifySendLog.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/NotifySendLog.java
@@ -49,6 +49,9 @@
@Excel(name = "鍙戦�佺姸鎬�")
private String sendStatus;
+ /** 鍙戦�佺殑鍐呭 */
+ private String sendContent;
+
/** 鍙戦�佹椂闂� */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@Excel(name = "鍙戦�佹椂闂�", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
@@ -171,6 +174,14 @@
this.sendResult = sendResult;
}
+ public String getSendContent() {
+ return sendContent;
+ }
+
+ public void setSendContent(String sendContent) {
+ this.sendContent = sendContent;
+ }
+
public String getResponseMsg() {
return responseMsg;
}
@@ -199,6 +210,7 @@
.append("sendStatus", getSendStatus())
.append("sendTime", getSendTime())
.append("sendResult", getSendResult())
+ .append("sendContent", getSendContent())
.append("retryCount", getRetryCount())
.append("createTime", getCreateTime())
.append("createBy", getCreateBy())
--
Gitblit v1.9.1