fhx
2024-04-11 b2ad4b914ccaf0c22e382855d18d9bca64f016aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.hz.his.dto.gzh;
 
import lombok.Data;
 
/**
 * 发送模板消息扩展类
 */
@Data
public class GzhTemplateVO {
 
    /**接收者openid*/
    private String touser;
    /**模板ID*/
    private String templateId;
    /**链接:index?foo=bar*/
    private String url;
    /**类型:1、结账  2划扣  3、预约成功*/
    private Integer type;
    /**跳小程序所需数据,不需跳小程序可不用传该数据*/
    private String miniprogram;
    /**防重入id。*/
    private String clientMsgId;
    /**模板数据*/
    private String data;
 
}