From 09e6dc3fb7266620fafb5e341808a8eb36e080a1 Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期六, 13 十二月 2025 22:51:52 +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