liusheng
2023-07-07 429615c304035bf573297d69ce6a17e086e4f6fa
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,13 @@
     * “keyword1”:“......”
     * }]
     */
    @Excel(name = " 发送内容 ")
    @ApiModelProperty(value = "发送内容")
    Map<String, Object> content;
    /**
     * 跳转URL
     */
    @Excel(name = " 跳转URL ")
    @ApiModelProperty(value = "跳转URL")
    String url;
}