From dbbb114c25b2406b6d1fd52019d2f2228ffcacd0 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期三, 27 十一月 2024 18:04:16 +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