yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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
package com.qianwen.smartman.modules.notify.enums;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/enums/NotifyTemplateExpandEnum.class */
public enum NotifyTemplateExpandEnum {
    DING_COLUMN_MESSAGE("dingTalk", "dingTalkMessage", "message", "maxLength", 5000),
    EMAIL_COLUMN_TITLE("email", "embedded", "subject", "maxLength", 5000);
    
    private final String type;
    private final String provider;
    private final String property;
    private final String key;
    private final Object value;
 
    NotifyTemplateExpandEnum(final String type, final String provider, final String property, final String key, final Object value) {
        this.type = type;
        this.provider = provider;
        this.property = property;
        this.key = key;
        this.value = value;
    }
 
    public String getType() {
        return this.type;
    }
 
    public String getProvider() {
        return this.provider;
    }
 
    public String getProperty() {
        return this.property;
    }
 
    public String getKey() {
        return this.key;
    }
 
    public Object getValue() {
        return this.value;
    }
}