童刚
2022-08-12 15ab196977489471fc747d898ebe0cb9ece5cab7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.hz.sms.dto;
 
import lombok.Data;
 
@Data
public class WeAppTemplateMsg {
    //小程序模板ID
    private String templateId;
    //小程序页面路径
    private String page;
    //小程序模板消息formid
    private String fromId;
    //小程序模板放大关键词
    private String emphasisKeyword;
    //小程序模板数据
    private String data;
}