童刚
2022-08-02 6de4e86086a1c7ab346e5f57e3ad10e2cf79c544
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package com.hz.sms.dto;
 
 
import java.util.List;
 
public class TemplateMsgDto {
    /** 小程序appid,必须是与当前应用关联的小程序 */
    private String appid;
    /** 点击消息卡片后的小程序页面,最长1024个字节,仅限本小程序内的页面。该字段不填则消息点击后不跳转。 */
    private String page;
    /** 消息标题,长度限制4-12个汉字(支持id转译)*/
    private String title;
    /** 消息描述,长度限制4-12个汉字(支持id转译)*/
    private String description;
    /** 是否放大第一个content_item*/
    private boolean emphasis_first_item;
    /** 消息内容键值对,最多允许10个item*/
    private List<ContentItemDto> content_item;
 
    public String getAppid() {
        return appid;
    }
 
    public void setAppid(String appid) {
        this.appid = appid;
    }
 
    public String getPage() {
        return page;
    }
 
    public void setPage(String page) {
        this.page = page;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public boolean isEmphasis_first_item() {
        return emphasis_first_item;
    }
 
    public void setEmphasis_first_item(boolean emphasis_first_item) {
        this.emphasis_first_item = emphasis_first_item;
    }
 
    public List<ContentItemDto> getContent_item() {
        return content_item;
    }
 
    public void setContent_item(List<ContentItemDto> content_item) {
        this.content_item = content_item;
    }
}