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;
|
}
|
}
|