From 75cb81f0b88f313857ea431b46b929bef95d7cc8 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期一, 29 七月 2024 10:36:59 +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