From d3bf339bd64d7b7efddc0afdd4beb1866b8b5a04 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期六, 21 九月 2024 00:47:55 +0800
Subject: [PATCH] 代码提交

---
 smartor/src/main/java/com/smartor/domain/WeChatSendVo.java |   15 ++++++++++++---
 1 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/smartor/src/main/java/com/smartor/domain/WeChatSendVo.java b/smartor/src/main/java/com/smartor/domain/WeChatSendVo.java
index 8b35549..6514f5d 100644
--- a/smartor/src/main/java/com/smartor/domain/WeChatSendVo.java
+++ b/smartor/src/main/java/com/smartor/domain/WeChatSendVo.java
@@ -1,17 +1,20 @@
 package com.smartor.domain;
 
 import com.ruoyi.common.annotation.Excel;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
 
 import java.util.Map;
 
 @Data
+@ApiModel(value = "WeChatSendVo", description = "寰俊娑堟伅鍙戦��")
 public class WeChatSendVo {
 
     /**
      * 妯℃澘ID
      */
-    @Excel(name = " 妯℃澘ID ")
+    @ApiModelProperty(value = "妯℃澘ID")
     String templateId;
 
     /**
@@ -21,13 +24,19 @@
      * 鈥渒eyword1鈥濓細鈥�......鈥�
      * }]
      */
-    @Excel(name = " 鍙戦�佸唴瀹� ")
+    @ApiModelProperty(value = "鍙戦�佸唴瀹�")
     Map<String, Object> content;
 
     /**
      * 璺宠浆URL
      */
-    @Excel(name = " 璺宠浆URL ")
+    @ApiModelProperty(value = "璺宠浆URL")
     String url;
 
+    /**
+     * 鐢ㄦ埛寰俊ID
+     */
+    @ApiModelProperty(value = "鐢ㄦ埛寰俊ID")
+    String openid;
+
 }

--
Gitblit v1.9.3