邮件平台枚举
This commit is contained in:
parent
2a68afc6be
commit
7d1df70e28
|
@ -0,0 +1,26 @@
|
||||||
|
package net.maku.system.enums;
|
||||||
|
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Getter;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 邮件平台枚举
|
||||||
|
*
|
||||||
|
* @author 阿沐 babamu@126.com
|
||||||
|
* <a href="https://maku.net">MAKU</a>
|
||||||
|
*/
|
||||||
|
@Getter
|
||||||
|
@AllArgsConstructor
|
||||||
|
public enum MailPlatformEnum {
|
||||||
|
/**
|
||||||
|
* 本地
|
||||||
|
*/
|
||||||
|
LOCAL(-1),
|
||||||
|
/**
|
||||||
|
* 阿里云
|
||||||
|
*/
|
||||||
|
ALIYUN(0);
|
||||||
|
|
||||||
|
private final int value;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user