shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
package com.iplatform.model.vo;
 
import java.io.Serializable;
 
public class NotificationTemplateVo implements Serializable {
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public boolean getWechat() {
        return wechat;
    }
 
    public void setWechat(boolean wechat) {
        this.wechat = wechat;
    }
 
    public boolean getRoutine() {
        return routine;
    }
 
    public void setRoutine(boolean routine) {
        this.routine = routine;
    }
 
    public boolean getSms() {
        return sms;
    }
 
    public void setSms(boolean sms) {
        this.sms = sms;
    }
 
    public long getWechatId() {
        return wechatId;
    }
 
    public void setWechatId(long wechatId) {
        this.wechatId = wechatId;
    }
 
    public long getRoutineId() {
        return routineId;
    }
 
    public void setRoutineId(long routineId) {
        this.routineId = routineId;
    }
 
    public long getSmsId() {
        return smsId;
    }
 
    public void setSmsId(long smsId) {
        this.smsId = smsId;
    }
 
    public String getWechatTempId() {
        return wechatTempId;
    }
 
    public void setWechatTempId(String wechatTempId) {
        this.wechatTempId = wechatTempId;
    }
 
    public String getRoutineTempId() {
        return routineTempId;
    }
 
    public void setRoutineTempId(String routineTempId) {
        this.routineTempId = routineTempId;
    }
 
    public String getSmsTempId() {
        return smsTempId;
    }
 
    public void setSmsTempId(String smsTempId) {
        this.smsTempId = smsTempId;
    }
 
    private String name;
 
    private boolean wechat = false;     // 微信公众号
    private boolean routine = false;    // 微信小程序
    private boolean sms = false;
 
    private long wechatId = 0;
    private long routineId = 0;
    private long smsId = 0; // 对应各自模板id,TemplateMessage
 
    private String wechatTempId;
    private String routineTempId;
    private String smsTempId;
 
    // 目前缓存中不需要存储模板具体内容,仅为了看到内容而已
//    private String wechatContent;
//    private String routineContent;
//    private String smsContent;
}